-
Notifications
You must be signed in to change notification settings - Fork 981
Closed
Labels
BUGunexpected behaviorunexpected behavior
Description
Using master branch.
Changed the cookbook/Plottable/Signal.cs file as follows:
public void ExecuteRecipe(Plot plt)
{
double[] ys = DataGen.RandomWalk(null, 500);
int sampleRate = 10;
var sp2 = plt.AddSignal(ys, sampleRate, Color.Magenta);
sp2.OffsetY = 1000;
sp2.OffsetX = 300;
sp2.LineStyle = LineStyle.Dash;
sp2.LineWidth = 4;
}I set the LineStyle and LineWidth. The LineWidth mainly to convince myself I was looking at the correct example.
I see the following when I display Plottable: Signal Plot->Styled Signal Plot:
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
BUGunexpected behaviorunexpected behavior
