PdfRpt.VectorCharts.VerticalBarChart.addMarkerTextToChart C# (CSharp) Method

addMarkerTextToChart() private method

private addMarkerTextToChart ( float y1, double yAxisValue ) : void
y1 float
yAxisValue double
return void
        private void addMarkerTextToChart(float y1, double yAxisValue)
        {
            ColumnText.ShowTextAligned(
                canvas: _template,
                alignment: Element.ALIGN_LEFT,
                phrase: PdfFont.FontSelector.Process(yAxisValue.ToString(CultureInfo.InvariantCulture)),
                x: Margin,
                y: y1 - 2,
                rotation: 0,
                runDirection: (int)Direction,
                arabicOptions: 0);
        }