Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Properties

HeaderColor

The color of the header section for each node. Specify an HTML color value.

Code Block
languagejava
this.treeMapChart.setHeaderColor("#009688");

HeaderHeight

The height of the header section for each node, in pixels (can be zero).

Code Block
languagejava
this.tableChart.setHeaderHeight(15);

HeaderHighlightColor

The color of the header of a node being hovered over. Specify an HTML color value or null; if null this value will be headerColor lightened by 35%.

Code Block
languagejava
this.treeMapChart.setHeaderHighlightColor("");

HighlightOnMouseOver

Determines if elements should show highlighted effects when moused over. If set to true, highlighting for different elements can be specified using the various highlightColor options.

Code Block
languagejava
this.treeMapChart.setHighlightOnMouseOver(true);

HintOpacity

When maxPostDepth is greater than 1, causing nodes below the current depth to be shown, hintOpacity specifies how transparent it should be. It should be between 0 and 1; the higher the value, the fainter the node.

Code Block
this.treeMapChart.setHintOpacity(2);

Max / Mid / MinColor

The color for a rectangle with a column 3 value of maxColorValue. Specify an HTML color value.

Code Block
languagejava
this.treeMapChart.setMinColor("#009688");

MaxDepth

The maximum number of node levels to show in the current view. Levels will be flattened into the current plane. If your tree has more levels than this, you will have to go up or down to see them. You can additionally see maxPostDepth levels below this as shaded rectangles within these nodes.

Code Block
this.treeMapChart.setMaxDepth(1);

Max / Mid / MinHighlightColor

Sets the horizontal scrolling position, in pixels, if the table has horizontal scroll bars because you have set the width property. The table will open scrolled that many pixels past the leftmost column.

Code Block
this.treeMapChart.setMinHighlightColor("#8c6bb1");

MaxPostDepth

How many levels of nodes beyond maxDepth to show in "hinted" fashion. Hinted nodes are shown as shaded rectangles within a node that is within the maxDepth limit.

Code Block
languagejava
this.treeMapChart.setMaxPostDepth(2);

NoColor

The color to use for a rectangle when a node has no value for column 3, and that node is a leaf (or contains only leaves). Specify an HTML color value.

Code Block
this.treeMapChart.setNoColor("");

NoHightlightColor

The color to use for a rectangle of "no" color when highlighted. Specify an HTML color value or null; if null, this will be the value of noColor lightened by 35%.

Code Block
this.treeMapChart.setNoHighlightColor("");

ShowScale

Whether or not to show a color gradient scale from minColor to maxColor along the top of the chart. Specify true to show the scale.

Code Block
this.tableChart.ShowScale(true);

ShowTooltip

Whether to show tooltips.

Code Block
languagejava
this.tableChart.setStartPagesetShowTooltips(1true);