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

drawXAxisLabel() private method

private drawXAxisLabel ( float left, BarChartItem item ) : void
left float
item BarChartItem
return void
        private void drawXAxisLabel(float left, BarChartItem item)
        {
            ColumnText.ShowTextAligned(
                canvas: _template,
                alignment: Element.ALIGN_LEFT,
                phrase: PdfFont.FontSelector.Process(item.Label),
                x: left + XAxisLabelXLocationDelta,
                y: XAxisLabelYLocation,
                rotation: XAxisLabelRotation,
                runDirection: (int)Direction,
                arabicOptions: 0);
        }