You are welcome… :-)
Havard,
I’ve come across this issue in the past. Disable touch events is one way to fix the issue. But am not sure if that the right way to go. As of now am busy with v1.3 GA release. Have added this to v1.3.1 – might take around two weeks. But I’ll try to give you an intermediate build before that time.
—
Sunil Urs
Am a little busy with v1.3 GA release. Have added this for v1.3.1 – around 2 weeks.
Reducing font size was just a temporary fix that I suggested. This issue is on my list for v1.3.1
Thanks for reporting. I’ll look into the issue.
If you meant to ask if it is possible to set values outside the constructor, please check section called “Alternate way of setting / updating data” here.
Thanks for the jsfiddle. I’ll look into this issue at the earliest.
Meanwhile I observed that you have placed axisX inside dataSeries instead of directly under chart. That is the reason why you are not able to set any label properties. I’ve updated the code by reducing the labelFontSize. Have a look.
Surely I can help you with this. Can you please post some (minimal) code so that I can reproduce the same. You can also send it across to info@canvasjs.com
First please try with the latest beta from the download page.
Can you please try the latest version from the download page and let me know if it worked. If you are still having the problem, please post some code using which I reproduce the same. Am not able to reproduce the issue at my end.
Nope.. IE8- support is based on VML and its only for compatibility reasons. For all modern browsers its based on Canvas Element.
Charts are only Canvas based and there isn’t a way to create/export svg based charts.
Hi,
Yes, it is possible. CanvasJS Charts just take the height and width of its container. So you need to make sure the container’s height is 100%. You can do the same by setting height of both body and html to 100%.
html,body{
height:100%;
}
Here is a JSFiddle that I created.

Here is one related Stackoverflow thread.
Hope this helps.
—
Sunil Urs
Yes, here is an example.
Sorry, irregular intervals like this are not possible.
Chart Types are case sensitive. Please change chart type from “Line” to “line” and it should work fine.