--
You received this message because you are subscribed to the Google Groups "Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-visualization-api+unsub...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-visualization-api/c3bbff6d-9f29-418c-9d72-006a180ec4d7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Thanks for responding sir. It still does not work. Its probably me. I have a demo of an app that this is embedded in and I need to get it to work. I appreciate your help. What I just tried follows.
$progstr = "<html>
<head>
<script type='text/javascript' src='https://www.gstatic.com/charts/loader.js'></script>
<script type='text/javascript'>
google.load('current', {'packages':['annotatedtimeline']});
--
You received this message because you are subscribed to the Google Groups "Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-visualization-api+unsub...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-visualization-api/48d57210-5f1c-4bfe-b4d5-f2d2eb456687%40googlegroups.com.
--
You received this message because you are subscribed to the Google Groups "Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-visualization-api+unsub...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-visualization-api/438ef1c8-9f5d-4120-a59f-2cb41224fb83%40googlegroups.com.
--
You received this message because you are subscribed to the Google Groups "Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-visualization-api+unsub...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-visualization-api/78b7b218-eac0-4b3f-9103-e1a45da9678f%40googlegroups.com.
<head>
<script type='text/javascript' src='https://www.gstatic.com/charts/loader.js'></script>
<script type='text/javascript'>
google.charts.load('current', {'packages':['annotatedtimeline']});
google.charts.setOnLoadCallback(drawChart);
function drawChart() {
var data = new google.visualization.DataTable();
data.addColumn('date', 'Date');
data.addColumn('number', 'State');
data.addColumn('string', 'title1');
data.addColumn('string', 'text1');
data.addRows([ [new Date(2001,6,1), 64.5, undefined, undefined], [new Date(2003,0,15), 77.3,'Insurance For All','The Universal Coverage Act of 2003 is proposed.'], [new Date(2003,2,15), 77.3,'Insurance Finally','The Universal Coverage Act of 2003 passes.'], [new Date(2003,6,1), 77.3,'Funding Approved','The Universal Coverage Act funding is allocated.'], [new Date(2003,8,15), 77.3,'Funding Begins','The Universal Coverage Act funding of 2003 begins.'], [new Date(2005,6,1), 78.6, undefined, undefined], [new Date(2007,6,1), 78.6, undefined, undefined], [new Date(2009,6,1), 78.6, undefined, undefined], [new Date(2011,6,1), 78.6, undefined, undefined] ]);
var chart = new google.visualization.AnnotatedTimeLine(document.getElementById('chart_div'));
chart.draw(data, {displayAnnotations: true, displayZoomButtons: false, allValuesSuffix: '%', fill: 40, thickness: 1, colors:['#809FFF'], displayRangeSelector: false});
}
</script>
</head>
<body>
<div id='chart_div' style='width: 800px; height: 380px;'></div>
</body>
--
You received this message because you are subscribed to the Google Groups "Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-visualization-api+unsub...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-visualization-api/1f4c6d0d-31f8-4fea-b5ea-6081fe41c0e0%40googlegroups.com.
The double quote option worked on the %, but the annotations are still incorrect. I get undefined text along the timeline and next to the annotations that are positioned below the graph. And the interactivity of the annotations does not work.
--
You received this message because you are subscribed to the Google Groups "Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-visualization-api+unsub...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-visualization-api/d24717e4-bfc1-451e-87e0-9bbebee25277%40googlegroups.com.
I think the problem is that I'm currently running the information system the timeline is a part of in IE compatibility mode. I'm doing this because of earlier quotation requirements ( that are no longer required ) when passing Perl variables into CSS and JavaScript. When I take the timeline out of compatibility mode, the timeline works as it does in jsfiddle. The whole application comprises about 200 modules. They all work very well in compatibility mode. The original timeline worked as intended in compatibility mode. Although I intend to transition out of compatibility mode, it will take some coding and retesting time. What can I do now? Do I have any alternative short of canceling the upcoming demonstration? Its taken some time to get this demonstration opportunity. Why won't the timeline work in the IE compatibility mode?
--
You received this message because you are subscribed to the Google Groups "Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-visualization-api+unsub...@googlegroups.com.
To post to this group, send email to google-visualization-api@googlegroups.com.
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-visualization-api/1f24c6c2-a500-4ed2-b938-ba18bea5b2cf%40googlegroups.com.