CR.7.15  LinearSizeFrame

The LinearSizeFrame object contains a frame that linearly maps numerical data values to sizes. To create a LinearSizeFrame object, call the LinearSizeFrame constructor.

var frame = new LinearSizeFrame('Quantity');

You can pass the name of a field (e.g., 'Quantity') to the constructor, or specify this later using the inherited VisualFrame.setField(field) property.

Note: Report script that modifies 'bindingInfo' should be placed in the onLoad handler.

Example (Report)

Bind a point-type chart to the sample 'All Sales' query, with 'Company' (top 5) on the X-axis, and Sum(Total) on the Y-axis. Add the following script in the onLoad handler.

Chart1.bindingInfo.setSizeField("Total",Chart.NUMBER)

Chart1.bindingInfo.sizeFrame = new LinearSizeFrame;

 

Note: Script that modifies 'graph' should be placed at the element level. See Adding Element-Level Script in Report Scripting and Adding Component Script in Dashboard Scripting for more information.

Example (Report or Viewsheet)

dataset = [["State", "Quantity", "width"], ["NJ", 200, 5], ["NY", 300,10], ["PA",75,15]];

graph = new EGraph();

var elem = new IntervalElement("State", "Quantity");

var frame = new LinearSizeFrame();

frame.setField("width");

frame.setSmallest(10);

frame.setLargest(50);

frame.setMax(100);

elem.setSizeFrame(frame);

graph.addElement(elem);

 

Full Name

inetsoft.graph.aesthetic.LinearSizeFrame

See Also

DataSet, to use a Data Block or query as the dataset source.

<< StaticSizeFrame.setSize(value) © 1996-2013 InetSoft Technology Corporation (v11.5) CR.7.16 CategoricalSizeFrame >>