PCAxis.RangeFill

Syntax

RangeFill: PP.Color || String;

Description

The RangeFill property determines color of filtering range.

Comments

Use JSON or the setRangeFill method to set the property value, and the getRangeFill method to get the property value.

Example

Executing the example requires the ParallelCoordinates component named coord (see Example of Creating the ParallelCoordinates Component). Set new fill color for the filtering range of the second axis:

// Get the second axis
var axis2 = coord.getAxes()[1];
// Set fill color for the filtering range of the second axis
axis2.setRangeFill("#BEBEBE", true);
// Refresh the chart
axis2.getChart().refresh();

After executing the example gray fill is set for the filtering range of the second axis:

See also:

PCAxis