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

drawYAxisLabel() private method

private drawYAxisLabel ( float top, BarChartItem item ) : void
top float
item BarChartItem
return void
        private void drawYAxisLabel(float top, BarChartItem item)
        {
            ColumnText.ShowTextAligned(
                canvas: _template,
                alignment: Element.ALIGN_LEFT,
                phrase: PdfFont.FontSelector.Process(item.Label),
                x: Margin,
                y: top + 2,
                rotation: 0,
                runDirection: (int)Direction,
                arabicOptions: 0);
        }