-
Notifications
You must be signed in to change notification settings - Fork 8
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
When the current culture is set to french the piechart doesn't render #2
Comments
Could you share more details on the bug? Like what you are inputting and the screenshot of the occurring bug |
Here is the code to reproduce the bug
The generated json code is followed
As you can see the value for rotation options and circumference contains comma instead of dot (due to the current thread culture) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The issue come from the double/decimal encoding of the javascript string : when the culture is french, the decimal separator is "," so it generate a bug.
I suggest you to use Invariant Culture in the ToString function if possible.
The text was updated successfully, but these errors were encountered: