1

I'm using the Dynamic Data Display Library in WPF. I have my LineGraph linked to my chartplotter. I can see it in the plotter when I launch the application.

I want to know if it's possible to change the opacity of that linegraph while the application is running.

Kerast
  • 13
  • 2

1 Answers1

1

Yes you can, for example, you can use a slider. When the user move the slider, it changes the opacity of the linegraph (with an event, binding...) :

line.LinePen.Opacity = slider.Value;
Jean Col
  • 522
  • 5
  • 16