Jump to content
Software FX Community

thanhtung

Members
  • Posts

    5
  • Joined

  • Last visited

thanhtung's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Hi all, I am studying to draw history chart, Data is normal, and display history with data in data-tables. So, Axis Y can't display decimal part; and it will auto round data. Example: 0.2 - 0.4 ===> 0% 0.6 - 0.8 ===> 1% For more detail, pls display image file Thanks your support
  2. Dear Sir/Madam! I want to draw chart that the first Axis X point is equal 0 ( example: point(0,0) or point(0,10)) However, I can not the start point in Axis Y. Who can you know about it, please help me to do it. file:///C:/DOCUME%7E1/TungTT/LOCALS%7E1/Temp/moz-screenshot.png
  3. thank you so much! I still have a question! As support, we must write code by script (java) to find mouse position then display image... ==> Write fix display image for one chart. So, Can we write one function by vb.net to do it?? We want to display image static for chart dynamic >> Example: If I choose Male, it will display one chart, and we choose all (male and female), this form display two chart. And, with one chart will have the property display other image when move the mouse.... ======================================= function mousemove(e) { e = e || window.event; var divTag = $('<%=MyDiv.ClientID %>'); if (topPosition == 0) { var chartTag = $('<%=Chart1.ClientID %>'); // I want this chart is dynamic leftPosition = getXLocationFromBody(chartTag) + (chartTag.clientWidth / 2); topPosition = getYLocationFromBody(chartTag) + (chartTag.clientHeight / 2); } var mouseXPosition = getMousePosX(e); var mouseYPosition = getMousePosY(e); var mouseX if (mouseXPosition > leftPosition) mouseX = mouseXPosition - 10; else mouseX = mouseXPosition + 10; var mouseY if (mouseYPosition > topPosition) mouseY = mouseYPosition - 10; else mouseY = mouseYPosition + 10; divTag.style.left = mouseX + "px"; divTag.style.top = mouseY + "px"; divTag.style.position = "absolute"; }
  4. Thanks your support! However, I want to move the mouse, it will display image static (path static) not new chart. Can we do it?
  5. Dear all! I draw chart fx (Gallery.Lines) in Web. Now, I want to display image when we move mouse over point. who do you know about this problem? pls support for me. Ps:/ I see some even as: Link.OnMouseOver Link.OnMouseOut Link.OnMouseDown ==> so, what do you meaning of all even? Pls share data for me? Thank you very much!
×
×
  • Create New...