Manjula,
It is not possible to change labels into links. But instead you can attach click event handlers to dataPoints/dataSeries and open corresponding link when clicked.
—
Sunil Urs
Are you getting any error? If you can reduce the HTML to minimum possible lines such that it reproduce the issue, I can probably have a look and figure out the problem.
Paul,
Framesets have been deprecated and are not supported in HTML5 any more. When I tried this code, IE9 automatically switched to Quirks mode (to support the same probably) and threw error. In Quirks mode Canvas is not supported probably.
In my case adding to the top of page containing frameset fixed the issue. But it is not suggested to use framesets anymore.
If required, you should instead use iframe
–
Sunil
it is auto-generated from our embedded system – I’ve tried to tidy it up a little to make it more readable:
I tried this code by creating a csv file with some dummy data and its working fine on IE9. I think something got fixed while tidying up the code. Can you please test this code on your side. In order to figure out the problem I need a single HTML file that can reproduce the bug. And which OS are you using?
In developer tools can you please verify that the Browser Mode is “IE9” & Document Mode is “IE9 Standards”. I could reproduce this issue when Document Mode is set to “IE8 Standards”. This happens because IE8 doesn’t support canvas element.
Can you please post a sample HTML + JS code that can reproduce the issue? This issue normally happens when chart is not able to get hold of the container element. Please Make sure that you creating the chart inside onload or jQuery’s $(document).ready().
I can confirm that the issue still exists – now I’ve been able to reproduce it consistently on a desktop. Looking at the discussion am sure Google hasn’t pushed the update yet.
Tool Tip should be shown in IE6+. I just tried doughnut and it worked fine on IE8. Can you please help me reproduce the issue? A sample code that reproduce the issue should help.
Also can you try this doughnut and let me know if it worked.
Hi,
Whenever the window size changes the chart checks to see if the parent container’s size is still the same. If not, it re-adjusts itself – this is just an added feature that I’ve put. So, whenever you press ALT key (which displays menu), it changes the size of view-port and hence triggers re-adjustment logic in Chart. Because the container’s size has been set by the time you hit ALT, chart re-adjusts to its actual width. So, I would still say that it was timing issue.
If you want to remove iframe, best solution is to create chart once the layout is set – either by using jQuery’s ready method or a time delay. I would prefer jQuery’s ready event if that worked in your case.
—
Sunil Urs
As of now animation is supported only for Pie Charts – during first render. For other charts it isn’t available yet.
Seems like it’ll take couple of days more to finish. Will ping you back once its done.
Frederic,
Because the axis is DateTime type, values just run linearly and hence having two dataPoints with different date/time/value is not possible.
I can suggest you a way of emulating it though.
1. Use label to set same values (monday, tuesday, etc) for both the series so that they get drawn one on top of the other. Don’t set x values.
2. Set toolTipContent for individual dataPoints – as required
And, is-it can to display a vertical line in the chart When a mouse over a date in the AxisX?
If you meant a vertical crosshair, it is not possible yet. Its planned for v1.5
—
Sunil Urs
Himanshu,
I just got an update for Chrome 29.0.1547.66 m and it seems to be working fine. Can you please update chrome and confirm the same?
—
Sunil Urs
Hi,
The issue has been fixed in v1.3. Please download the latest version and let me know if it worked as expected.
—
Sunil Urs
Working on a new pie labelling algorithm which would include wrapping. Hoping to complete by the end of the week.