ChartColumnSerie.CornerRadius

Syntax

CornerRadius: Number;

Description

The CornerRadius property determines rounding radius of the column head.

Comments

Use JSON or the setCornerRadius method to set the property value, and the getCornerRadius method to get the property value.

The property is set from 0 to 0.5.

Example

Executing the example requires the web application with opened instance of the express report, with selected chart. It is required to enter code in the console:

// Get chart
dView = PP.App.getModuleObject().getReportBox().getDataView();
chart = dView.getChartView().getInstance();
// Get the first data series
firstSerie = chart.getSeries()[0];
// Set rounding series
firstSerie.setCornerRadius(0.3);​

After executing the example the head of the first series was rounded.

See also:

ChartColumnSerie