Pareto Chart Properties

ConnectParetoBars

In a Pareto Chart (GraphType=102), this property affects how the Pareto series bars are drawn. When this property is set to true, Pareto bars are drawn connected with no space in between them. When this property is set to false, Pareto bars are drawn with space between them.

DATA TYPE:

boolean

RANGE:

true (Connect Pareto Bars) / false (Do not connect bars)

DEFAULT:

true (connect Pareto Bars)

SYNTAX:

void setConnectParetoBars(boolean newValue);
boolean getParetoBars();

EXAMPLE:

setDepthAngle(0);
setDepthRadius(0);
setFootnoteDisplay(false);
setDisplayParetoSeries (0);
setGraphType(102);
setTitleString("Pareto Chart");
setSubtitleString("ConnectParetoBars = false");
setConnectParetoBars(false);

setSubtitleString("ConnectParetoBars = true");
setConnectParetoBars(true);

DisplayParetoSeries

This property selects the series to be highlighted in a Pareto chart.

DATA TYPE:

integer

RANGE:

0...# of Series in data set

DEFAULT:

0

SYNTAX:

void setDisplayParetoSeries(int newValue);
int getParetoSeries();

EXAMPLE:

setFootnoteDisplay(false);
setDisplayParetoSeries (2);
setGraphType(102);
setTitleString("Pareto Chart");
setSubtitleString("DisplayParetoSeries(2)");

setFootnoteDisplay(false);
setDisplayParetoSeries (3);
setGraphType(102);
setTitleString("Pareto Chart");
setSubtitleString("DisplayParetoSeries(3)");

ParetoDisplayThreshold

This property sets the location to to split the chart frame and accumulation line in a pareto chart.

DATA TYPE:

integer

RANGE:

0...100

DEFAULT:

1

SYNTAX:

void setParetoDisplayThreshold(int newValue);
int getParetoDisplayThreshold();

EXAMPLE:

setTitleDisplay(false);
setSubtitleDisplay(false);
setFootnoteDisplay(false);
setDepthAngle(0);
setDepthRadius(0);
setGraphType(102);
setParetoDisplayThreshold(50);

setTitleDisplay(false);
setSubtitleDisplay(false);
setFootnoteDisplay(false);
setDepthAngle(0);
setDepthRadius(0);
setGraphType(102);
setParetoDisplayThreshold(90);

ParetoY2MajorGridStep

This property sets the interval of grid lines and labels on the Y2-axis in a pareto chart.

DATA TYPE:

double

RANGE:

1.0...500.0

DEFAULT:

10.0

SYNTAX:

void setParetoY2MajorGridStep(double newValue);
double getParetoY2MajorGridStep();

EXAMPLE:

setTitleDisplay(false);
setSubtitleDisplay(false);
setFootnoteDisplay(false);
setDepthAngle(0);
setDepthRadius(0);
setGraphType(102);
setParetoDisplayThreshold(0);
setParetoY2MajorGridStep(20.0);

setTitleDisplay(false);
setSubtitleDisplay(false);
setFootnoteDisplay(false);
setDepthAngle(0);
setDepthRadius(0);
setGraphType(102);
setParetoDisplayThreshold(0);
setParetoY2MajorGridStep(40.0);

ParetoY2MajorTickStep

This property sets the interval of tick marks on the Y2-axis in a pareto chart.

DATA TYPE:

double

RANGE:

1.0...500.0

DEFAULT:

10.0

SYNTAX:

void setParetoY2MajorTickStep(double newValue);
double getParetoY2MajorTickStep();

EXAMPLE:

setGraphType(102);
setDepthAngle(0);
setDepthRadius(0);
setDisplay(getY2MajorGrid(), false);
setDisplay(getY1MajorGrid(), false);
setParetoY2MajorTickStep(10.0);
setDisplay(getY2MajorTick(), true);