Reputation: 47
I'm using ScottPlot within a WPF app; specifically, I'm using Plot.AddSignal()
to add my signals to a graph.
I see that the width of vertical or horizontal lines can be controlled by the width property, as follows:
Plot.AddVerticalLine(x:10.0, width: 4f);
But how can I control the thickness (width) of signals I add to the chart using AddSignal()
?
Upvotes: 1
Views: 283
Reputation: 2209
You can use SignalPlotBase<T>.LineWidth
:
For example:
var sig = Plot.AddSignal(args);
sig.LineWidth = 4;
Upvotes: 1