PCArea.Chart

Syntax

Chart: PP.Ui.ParallelCoordinates;

Description

The Chart property sets the chart data of which should be drawn in the area.

Comments

Use JSON or the setChart method to set the property value and the getChart method to get the property value.

Example

Executing the example requires the ParallelCoordinates component named coord (see Example of Creating the ParallelCoordinates Component). Get drawing area and show identifier of its chart:

// Get drawing area
var chart = coord.getChartArea();
// Get ID of the drawing area chart
console.log("ID of the drawing area chart: " + chart.getChart().getId());

After executing the example the console shows identifier of the drawing area chart:

Identifier of the drawing area chart: ParallelCoordinates684

See also:

PCArea