PdfRpt.VectorCharts.HorizontalBarChart.drawHorizontalLabel C# (CSharp) Метод

drawHorizontalLabel() приватный Метод

private drawHorizontalLabel ( float top, BarChartItem item, float barValue ) : void
top float
item BarChartItem
barValue float
Результат void
        private void drawHorizontalLabel(float top, BarChartItem item, float barValue)
        {
            ColumnText.ShowTextAligned(
                canvas: _template,
                alignment: Element.ALIGN_LEFT,
                phrase: PdfFont.FontSelector.Process(item.Value.ToString(CultureInfo.InvariantCulture)),
                x: _leftMargin + Margin + barValue + 2,
                y: top + 2,
                rotation: 0,
                runDirection: (int)Direction,
                arabicOptions: 0);
        }