PdfRpt.VectorCharts.HorizontalBarChart.addMarkerLineToChart C# (CSharp) Method

addMarkerLineToChart() private method

private addMarkerLineToChart ( float x1 ) : void
x1 float
return void
        private void addMarkerLineToChart(float x1)
        {
            _template.SetLineWidth(HorizontalLineWidth);
            _template.SetColorStroke(HorizontalGridColor);
            _template.MoveTo(x1, Margin + _bottomMargin);
            _template.LineTo(x1, Margin + _bottomMargin - 4);
            _template.Stroke();
        }