-
-
Notifications
You must be signed in to change notification settings - Fork 2.5k
New issue
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
making "labels" optional #425
Comments
Something we can definitely incorporate in a future version! |
Or a way to hide the label
|
hiding is nothing compared to the problem of forcing a dev to create useless empty Array with N length just so the script would work.. |
@rdpascua hiding is already possible. See http://gionkunz.github.io/chartist-js/api-documentation.html#chartistline-declaration-defaultoptions // Options for Y-Axis
axisY: {
// If labels should be shown or not
showLabel: true,
// If the axis grid should be drawn or not
showGrid: true,
// Interpolation function that allows you to intercept the value from the axis label
... This task is really about the possibility of skipping labels at all from the configuration when the AutoScaleAxis is created from the default configuration. |
There is no need to in forcing the input of a
labels
array... simply inputting empty array items is time-consuming and redundant.The text was updated successfully, but these errors were encountered: