Google Materials Charts (scatter) Not Showing Trendlines Or Tooltips
I'm using Google charts, Materials Charts running in IE v11, and when I do things like trendlines and tooltips no longer work. The same happens if I add a column {type: 'string', r
Solution 1:
After looking deeper into Google's Material Chart information I found on their website:
The Material Charts are in beta. The appearance and interactivity are largely final, but the way options are declared is not.
Trendlines and tooltips fall under the options section of creating charts since they need the options structure to further define them. Again, as of this date (March 2015) the Google Materials Charts do not support these features. If you want to use things like trendlines and tooltips you need to use non material charts (e.g. packages['corechart'] and not packages['scatter']).
Solution 2:
For what it's worth, you may have been loading the wrong version of Google's charts. You referenced '1' where it should be '1.1' for material charts. Like so:
google.load('visualization', '1.1', { packages: ['scatter'] });
Post a Comment for "Google Materials Charts (scatter) Not Showing Trendlines Or Tooltips"