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
Is your feature request related to a problem? Please describe. There doesn't seem to be a way to specify polar chart to be counter-clockwise.
Describe the solution you'd like A property in PolarChart or PolarAxis to make it counter clockwise.
Describe alternatives you've considered Tried IsInverted in PolarAxis in AngleAxes collection but does not make any noticeable difference.
IsInverted
Additional context Currently using Avalonia 11.0.2 and LiveChartsCore.SkiaSharpView.Avalonia Version=2.0.0-rc2
The text was updated successfully, but these errors were encountered:
This is fixed with the referenced commit and will be included in the next version of the library.
The sample in the web site will be also updated, but basically all we need to do is invert the axis:
public PolarAxis[] AngleAxes { get; set; } = [ new PolarAxis { LabelsRotation = LiveCharts.TangentAngle, IsInverted = true // enables counter clockwise draw. // mark } ];
Sorry, something went wrong.
d7ecaa8
No branches or pull requests
Is your feature request related to a problem? Please describe.
There doesn't seem to be a way to specify polar chart to be counter-clockwise.
Describe the solution you'd like
A property in PolarChart or PolarAxis to make it counter clockwise.
Describe alternatives you've considered
Tried
IsInverted
in PolarAxis in AngleAxes collection but does not make any noticeable difference.Additional context
Currently using Avalonia 11.0.2 and LiveChartsCore.SkiaSharpView.Avalonia Version=2.0.0-rc2
The text was updated successfully, but these errors were encountered: