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
Is it possible make dynamic change of graph line dataset properties in custom.js afterGetDevices()
I would like to change these dataset properties : borderColor borderDash borderWidth pointRadius
==> How to address already build graph v v_1 v_2 dataset ?
The text was updated successfully, but these errors were encountered:
I would expect you can call setBlock(). Something like:
var key='my graph'; myblock = blocks[key]; myblock.datasets['v'].borderColor = 'green'; Dashticz.setBlock(key, myblock);
Sorry, something went wrong.
I am using custom reports then using this way does not seem to work :
var key='Autonomy-vs-Lines'; myblock = blocks[key]; myblock.custom['last12H'].datasets['v_1'].legend = 'My legend'; Dashticz.setBlock(key, myblock);
Where am I wrong ?
No branches or pull requests
Is it possible make dynamic change of graph line dataset properties in custom.js afterGetDevices()
I would like to change these dataset properties :
borderColor
borderDash
borderWidth
pointRadius
==> How to address already build graph v v_1 v_2 dataset ?
The text was updated successfully, but these errors were encountered: