Is it possible to generate chart not like an image?

I really like the DHTMLX components. But I found that the chart component is too simple.

I actually use Flotr to do chart with javascript code. With flotr you can have “mouse tracking”, “selection support”, “zoom support” … because the chart isn’t an image.
But Flotr isn’t developed anymore.

Do you think it’s possible that your chart component add these functionnalities ?

Thank for your answer.

Hello,

regrading “mouse tracking” - chart supports mouseover event. So, you may set onMouseMove and onMouseOut events and process them as you need:

chart.attachEvent("onMouseMove",function(id,e){ var item = this.get(id); /*your code here*/ }) chart.attachEvent("onMouseOut",function(id,e){ /*your code here*/ })

We don’t think that “selection support” and “zoom support” features are necessary. They could be useful for high-density chart elements… Currently we do not plan to add these features.