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
https://blazorise.com/support/issues/236/chartjs-support-secondary-y-axis
To be able to define named axis, we could add a dictionary of ChartAxis,
ChartAxis
[JsonPropertyName( "axis" )] [JsonIgnore( Condition = JsonIgnoreCondition.WhenWritingNull )] public Dictionary<string, ChartAxis> Axis { get; set; }
Then we could parse axis on JS side to properly assign the axis to chart options.
axis
The other way would be to introduce a JSON serializer that serializes dictionaries into ready-to-be-used chart options.
The text was updated successfully, but these errors were encountered:
stsrki
No branches or pull requests
https://blazorise.com/support/issues/236/chartjs-support-secondary-y-axis
To be able to define named axis, we could add a dictionary of
ChartAxis
,Then we could parse
axis
on JS side to properly assign the axis to chart options.The other way would be to introduce a JSON serializer that serializes dictionaries into ready-to-be-used chart options.
The text was updated successfully, but these errors were encountered: