How can I change the color of lineSeries in the winform environment #1231
Unanswered
1367882999
asked this question in
Q&A
Replies: 1 comment
-
The first time I used Github to ask a question, the format of the question looked very poor. I hope everyone forgives me |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have tried various methods but still cannot change the color of my lineSeries. Currently, I suspect it is because my usage environment is Winform. I hope a coding master can help me take a look.``
``
List rowData2 = ReadSpecificRow(FilePath, 4, startRow, endRow);
LineSeries lineSeries2 = new LineSeries
{
Name = "line2",
Values = rowData2,
Stroke = new SolidColorPaint { Color = SKColors.Blue },
Beta Was this translation helpful? Give feedback.
All reactions