We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello. Firstly, thanks for graphos - it's been helpful.
I'm trying to pass chart options to Highcharts.js but they don't seem to be passing through to the initializing JavaScript. Here is some sample code:
from graphos.sources.simple import SimpleDataSource from graphos.renderers.highcharts import BarChart def view(request): data = [ ... ] data_source = SimpleDataSource(data=data) chart = BarChart(data_source, options={'title': 'My Chart', 'legend': {'enabled' : False}})
I'm trying to set turn the legend off as per Highchart docs, but no luck. Any suggestions?
The text was updated successfully, but these errors were encountered:
@obsoke Your code should work fine, can you check the view source and let us know if legend: {"enabled": false} is set?
legend: {"enabled": false}
Sorry, something went wrong.
No branches or pull requests
Hello. Firstly, thanks for graphos - it's been helpful.
I'm trying to pass chart options to Highcharts.js but they don't seem to be passing through to the initializing JavaScript. Here is some sample code:
I'm trying to set turn the legend off as per Highchart docs, but no luck. Any suggestions?
The text was updated successfully, but these errors were encountered: