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
Describe the bug when an Axis color is changed the initial color of the Ticks and Subticks remain on the chart
To Reproduce Steps to reproduce the behavior:
Expected behavior I assume this initial color should not remain
Screenshots
Desktop (please complete the following information):
The text was updated successfully, but these errors were encountered:
The button code in case it helps:
private void button3_Click(object sender, EventArgs e) { SolidColorPaint colorTmp = new SolidColorPaint(colorList[random.Next(0, 14)]); (yAxis[0] as Axis).LabelsPaint = colorTmp; (yAxis[0] as Axis).TicksPaint = colorTmp; (yAxis[0] as Axis).SubticksPaint = colorTmp; (yAxis[0] as Axis).SeparatorsPaint = colorTmp; // colorTmp = new SolidColorPaint(colorList[random.Next(0, 14)]); (yAxis[1] as Axis).LabelsPaint = colorTmp; (yAxis[1] as Axis).TicksPaint = colorTmp; (yAxis[1] as Axis).SubticksPaint = colorTmp; (yAxis[1] as Axis).SeparatorsPaint = colorTmp; }
Sorry, something went wrong.
register axis paints, fixes #638
67537dc
Thanks for the report, this issue is fixed with the referenced commit and will be included in the next version of the library.
No branches or pull requests
Describe the bug
when an Axis color is changed the initial color of the Ticks and Subticks remain on the chart
To Reproduce
Steps to reproduce the behavior:
Expected behavior
I assume this initial color should not remain
Screenshots
![ColorChangeIssue](https://user-images.githubusercontent.com/1083543/191952451-e94b6079-353a-4ca9-a7a7-32b8c3fa80ed.gif)
Desktop (please complete the following information):
The text was updated successfully, but these errors were encountered: