Hi all,
when I select some category with a CategoryFilter, it will display the selected category as a string inside my chart (ScatterChart).
How can I control the displayed text (i.e. disable or modify the position) ?
For example, one of my CategoryFilters:
var scenarioFilter = new google.visualization.ControlWrapper({
'controlType': 'CategoryFilter',
'containerId': 'scenariofilter_div',
'options': {
'filterColumnLabel': 'scenario'
}
});
And this is my chart:
var mychart = new google.visualization.ChartWrapper({
'chartType': 'ScatterChart',
'containerId': 'mychart_div',
'options': {
'width': 1000,
'height': 800,
'hAxis': { 'textPosition': 'none' }
}
}); I attached a screenshot to clarify which text I mean. :-)
Cheers,
Moritz