bindingInfo.sizeFrame
|
Specifies the size of graphical elements. A SizeFrame can size-code chart elements by value, or simply specify a static size. The default for dimensions is CategoricalSizeFrame. The default for measures is LinearSizeFrame.
Example
Chart1.bindingInfo.setSizeField("Total",Chart.NUMBER);
Chart1.bindingInfo.sizeFrame = new LinearSizeFrame;
Chart1.bindingInfo.sizeFrame.smallest = 10;
Chart1.bindingInfo.sizeFrame.largest = 50;
Chart1.bindingInfo.sizeFrame.max = 100;

Dashboard script that modifies bindingInfo should generally be placed in the onRefresh handler. See Add Dashboard Script.
|