public CoordinateIntervalMarkersStyle SetLinesYStyle(CoordinateLineStyle style)
 {
     if (style != null)
     {
         LinesYStyle = style;
     }
     return(this);
 }
 public CoordinateIntervalMarkersStyle()
 {
     MarkersStyle = new CoordinateMarkersStyle()
                    .SetMarkerXPosition(MarkerXPosition.TopPlusBottomMinus)
                    .SetMarkerYPosition(MarkerYPosition.RightPlusLeftMinus)
                    .EnableDrawingText();
     LinesXStyle = new CoordinateLineStyle()
                   .SetLineWidth(1)
                   .SetColor(Color.FromArgb(40, 0, 0, 0));
     LinesYStyle = new CoordinateLineStyle()
                   .SetLineWidth(1)
                   .SetColor(Color.FromArgb(40, 0, 0, 0));
     SetStep(1);
     EnableMarkers();
     DisableLines();
 }