-
Notifications
You must be signed in to change notification settings - Fork 353
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
Some times small values on large graph scales are not plotting #3222
Comments
Hi @SK4492, can you provide with full reproducible option? |
Hi @netil , or try with Height=350 Chart height will impact for data level display but why its different for same data value. |
Tested with and without specifying From the screenshot you shared looks value
|
@netil, cloud you please try with below data values I am able to simulate with these values , And Thanks for the quick updates. |
@SK4492, I already tested with the data example. Just changed the order to facilitate to point element from the browser devtool. Here are with the data order as you pointed, but I couldn't reproduce the issue. Also tested on FF and Safari as well.
Can you try on different browser? From the source code perspective, there's no different logic for rendering positive and negative values. |
It seems SVG rendering issue. |
Windows 10 Pro |
confirmed the issue. It's happening on windows and can be reproduced in various browsers. |
https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/shape-rendering
|
@SK4492 @watnab here's workaround From the base and themes css file, every path elements applies I'll be considering updating |
shpe-rendering:crispEdge CSS property causing shape to not be rendered correctly on Windows. Remove from dist CSS files to prevent the issue. Ref naver#3222
shpe-rendering:crispEdge CSS property causing shape to not be rendered correctly on Windows. Remove from dist CSS files to prevent the issue. Ref naver#3222
shpe-rendering:crispEdge CSS property causing shape to not be rendered correctly on Windows. Remove from dist CSS files to prevent the issue. Ref naver#3222
shpe-rendering:crispEdge CSS property causing shape to not be rendered correctly on Windows. Remove from dist CSS files to prevent the issue. Ref naver#3222
shpe-rendering:crispEdge CSS property causing shape to not be rendered correctly on Windows. Remove from dist CSS files to prevent the issue. Ref naver#3222
# [3.9.0-next.1](3.8.2...3.9.0-next.1) (2023-06-15) ### Bug Fixes * **export:** Fix Plugin class import ([24c0976](24c0976)), closes [#3221](#3221) * **shape:** Fix shape rendering issue on Windows ([cf1b484](cf1b484)), closes [#3222](#3222) * **tooltip:** Fix tooltip overflow when right side edge is hovered ([9ce900d](9ce900d)), closes [#3254](#3254) ### Features * **arc:** Intent to ship arc.needle ([04e90aa](04e90aa)), closes [#3205](#3205) * **data:** Intent to ship data.labels.position function ([59be3ec](59be3ec)), closes [#3237](#3237) * **module:** Support dual CJS/ESM package ([437c007](437c007)), closes [#2202](#2202) * **plugin:** Intent to ship TableView plugin ([215b611](215b611)), closes [#1873](#1873) * **theme:** Intent to ship dark theme ([252a28e](252a28e)), closes [#3229](#3229)
# [3.9.0](3.8.2...3.9.0) (2023-07-03) ### Bug Fixes * **export:** Fix Plugin class import ([24c0976](24c0976)), closes [#3221](#3221) * **shape:** Fix shape rendering issue on Windows ([cf1b484](cf1b484)), closes [#3222](#3222) * **tooltip:** Fix tooltip overflow when right side edge is hovered ([9ce900d](9ce900d)), closes [#3254](#3254) ### Features * **arc:** Intent to ship arc.needle ([04e90aa](04e90aa)), closes [#3205](#3205) * **bar:** Intent to ship bar.front ([f7e0d80](f7e0d80)), closes [#2965](#2965) * **data:** Intent to ship data.labels.position function ([59be3ec](59be3ec)), closes [#3237](#3237) * **legend:** Intent to ship legend.item.interaction.dblclick ([18f5c4a](18f5c4a)), closes [#1404](#1404) * **legend:** Intent to ship legent.item.interaction ([af87d10](af87d10)), closes [#1598](#1598) * **point:** Enhance point.sensitivity ([a537201](a537201)), closes [#2568](#2568) * **theme:** Intent to ship dark theme ([252a28e](252a28e)), closes [#3229](#3229)
Description
As we can see positive & negative axis values are same.
1st data point data1=10 & data2=-100 here data1 value 10 is not displaying on chart.
2nd data point data1=100 & data2=-10 here data2 values -10 is plotted on graph.
I know plotting small values on large scale graph is not possible and that is accepted behavior.
But in above case with same scale with same value one data point is visible and another is not this is misleading when we have comparison graph of data1 & data2 (i.e. comparing 100 with 10).
Is there any way to handled this.
Steps to check or reproduce
The text was updated successfully, but these errors were encountered: