paretoLineColor

Sets the color of the cumulative total line in a Pareto Chart when a field is bound in the Color region. If there is no Color binding, the Pareto line is the same color as the bars.

Type

number (hex)          Example: 0xFF0000
string (color name)   Example: 'red'
array [r,g,b]         Example: [255,0,0]
JSON {r:_,g:_,b:_}    Example: {r:255,g:0,b:0}
java.awt.Color        Example: java.awt.Color.BLUE (BLACK, CYAN, DARK_GRAY,
                               GRAY, GREEN, LIGHT_GRAY, MAGENTA, ORANGE,
                               PINK, RED, WHITE, YELLOW)

Example

Chart1.paretoLineColor = [255,0,0];
Chart1.paretoLineColor = {r:255,g:0,b:0};

paretoLineColor

Either syntax below can be used in component script:

paretoLineColor         // unqualified
Chart1.paretoLineColor  // qualified

For onInit/onRefresh scripts, and for component and property scripts on other components, the second (qualified) form is required.