How to set the LineSeries's line transparent e.g. 70%

Oystein Bjorke 10 ár síðan 0
This discussion was imported from CodePlex

David_NET wrote at 2013-11-22 11:04:

Q1: I have tried FromAColor. Is there another way?

Q2, is there a way to set the chart's SmoothingMode = SmoothingMode.AntiAlias;

everytimer wrote at 2013-11-22 12:12:

Q1: 0.7*255 = x
myLineSeries.ChangeAlpha(x);

Q2: No idea.

Good luck