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
I have a line chart with both 0.00 and null values. Right now hideEmptySeries also hides the series when the value is 0.00. I don't want that.
0.00
null
hideEmptySeries
So it would be nice to have an option like this:
tooltip: { hideEmptySeries: { hideZero: false, } }
Or maybe a new configuration:
tooltip: { hideSeriesWithValues: [null, undefined, 0], }
It would be useful for when you have charts where 0 is an important value, but null is not. In my case this would be used in a price chart.
0
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Summary
I have a line chart with both
0.00
andnull
values.Right now
hideEmptySeries
also hides the series when the value is0.00
. I don't want that.API Changes
So it would be nice to have an option like this:
Or maybe a new configuration:
Intended Use Case
It would be useful for when you have charts where
0
is an important value, butnull
is not.In my case this would be used in a price chart.
The text was updated successfully, but these errors were encountered: