| Contents > SharpPlot > Methods | Index |
SharpPlot.SetDatumLineStyle Method
Set DatumLine style given any of color, lineStyle and lineweight (pts).
Example
sp.SetDatumLineStyle(Color.Maroon,new LineStyle(new int[] {12,4,24,4})); // Long dashes
Overloads
- public void SetDatumLineStyle(Color lineColor);
- public void SetDatumLineStyle(double lineWidth);
- public void SetDatumLineStyle(LineStyle lineStyle);
- public void SetDatumLineStyle(Color lineColor,LineStyle lineStyle);
- public void SetDatumLineStyle(Color lineColor,LineStyle lineStyle,double lineWidth);
Datum lines are drawn as specified by the user, or automatically at major tickmarks which exceed the Datumline threshold (default 160% of standard tick length).
