Prasanth,
You can store all generated dataPoints, according to equation, in an array and assign it to chart dataPoints. Here is an example.
Eshwar,
toolTip, click events are applied even to dataPoint with zero y-value. Here is the updated fiddle.
—
Vishwas R
Team CanvasJS
Jenilkanani,
If y-value is zero, when you mouse-hover the axisX line at the corresponding x-value toolTip will be shown. Check the screenshot below. If the y-value (zero) is not present in first dataSeries, you can set toolTip.shared to true to show the zero value in toolTip.
If this doesn’t solve your requirement, kindly create a jsfiddle, so that we can look into your requirement properly and help you out.
Wazabe,
You can use stripLines to achieve this. Check this example.
Stefanaki,
Its not bug, we observed that the x-value you are providing is not in JavaScript Date-Time string format. Please refer to this link for JavaScript Date-Time String Formats. And here is the working fiddle.
Check the screenshots of working fiddle browsed in IE and Firefox.
—-
Vishwas R
Team CanvasJS
Xiaosongzou,
Thanks for reporting. We will look into the issue and get back to you at the earliest.
The issue is with the css-styling. Instead of using float:left, you can use display: inline-block. Check this example.
[UPDATE]
We’ve fixed this issue in the latest build. Please, do download the latest version and let us know your feedback.
Whenever you move finger / pointer on the chart, the chart has to know if you are trying to scroll or interact with the chart. Hence we have implemented a behavior where if you hold the finger for a while on the chart, it captures the event and doesn’t scroll. On the other hand, if you move pointer / finger quickly without pausing, it allows you to scroll. Can you try as mentioned above and let us know?
Also, can you please let us know your Device Model, OS, and Browser Version?
You can hide / unhide dataSeries based on click of legends. Please refer to this documentation page for step-to-step tutorial on the same.
.
—
Vishwas R
Team CanvasJS
Crees,
When you have multiple charts in a page, there will be multiple childElement (zoom/pan buttons). So automatically clicking all childElement will solve the issue.
var parentElement = document.getElementsByClassName("canvasjs-chart-toolbar");
var childElement = document.getElementsByTagName("button");
for(var i=0;i<childElement.length;i++){
if(childElement[i].getAttribute("state") === "pan"){
childElement[i].click();
}
}
Here is updated example.
Yes, its possible to update data for every ‘n’ seconds (10seconds in your case). Initially you can render chart with first set of data from an external JSON or the data received from the php service. And while updating you can fetch data from new source where new set of data is present and re-render the chart with new set of data. Here is an example.
Ernest,
It seems that the ArrayList you are storing is not string and result (2016-08-04 = 2004) is calculated at that instance and stored. Storing string within the array-list would solve the issue.
If your arraylist looks like al4 = [2016-07-25, 2016-07-26, 2016-08-01, 2016-08-02, 2016-08-03, 2016-08-04, 2016-08-05, 2016-08-08, 2016-08-09, 2016-08-10];
changing it to al4 = ["2016-07-25", "2016-07-26", "2016-08-01", "2016-08-02", "2016-08-03", "2016-08-04", "2016-08-05", "2016-08-08", "2016-08-09", "2016-08-10"];
would solve the issue.