Given the deprecation notice we are switching our sparkline implementation to linechart. However I cannot see what option to use to remove the black horizontal line at the bottom of the chart.
To help understand what I mean, in the Visualization Playground I changed the default linechart options to these:
new google.visualization.LineChart(document.getElementById('visualization')).
draw(data, {
hAxis: {textPosition: 'none'},
vAxis: {textPosition: 'none', gridlines: {color: 'transparent'}},
});
The result is fine, except for the black line across the bottom. How do I remove it?
Thanks,
Bill