PdfRpt.VectorCharts.HorizontalBarChart.addMarkerLineToChart C# (CSharp) 메소드

addMarkerLineToChart() 개인적인 메소드

private addMarkerLineToChart ( float x1 ) : void
x1 float
리턴 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();
        }