<https://lh3.googleusercontent.com/-fVJdwmT323E/WfkC_mvC-dI/AAAAAAAAGHI/yli1CcEy434t_kSB5Ayygz1VlPX1YtDOQCLcBGAs/s1600/google.png>
I am trying to figure out how to separate the X axis information for the 
mouseover popup. 
It would be great if the x Axis had minimal information. If there were 
several boxes the x axis would be very difficult to read. 

The code that generates the graph follows:

<script type="text/javascript" src=
"https://www.google.com/jsapi?autoload={'modules':[{'name':'visualization','version':'1','packages':['corechart']}]}"
></script>
<script type="text/javascript" 
src="https://www.gstatic.com/charts/loader.js";></script>
<script type="text/javascript">
google.charts.load('current', {'packages':['corechart']});
google.charts.setOnLoadCallback(drawChart);
google.setOnLoadCallback(drawChart);

function drawChart() {

var data = google.visualization.arrayToDataTable([
['Data', '',
{id: 'i0', role: 'interval'},
{id: 'i1', role: 'interval'},
{id: 'i1', role: 'interval'},
{id: 'i1', role: 'interval'},
{id: 'i0', role: 'interval'}
],
['District-Wide Data - Min:1.75, 25%:3.03, Med:3.21, 75%:3.45, Max:4.00', 
3.21, 1.75, 3.03, 3.21, 3.45, 4.00]
]);

var options = {
title: '2016-2017 Data - Generated on October 31, 2017, 6:50 pm',
vAxis: {gridlines: { count: 16 }},
legend:'none',
interval: {
i1: {style: 'boxes'}
},
series: {
0: { lineWidth: 0}
},
focusTarget: 'category'
};
var chart = new 
google.visualization.LineChart(document.getElementById('chart_div'));
chart.draw(data, options);
}
</script>
</head>

<body>
<div id="chart_div" style="width: 900px; height: 500px;"></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+unsubscr...@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/24e6f063-94f4-4928-a84b-bac19e217826%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to