bindingInfo.setShapeField(col, type)
bindingInfo.setMapLayer(col,layer)
bindingInfo.getGroupOrder(col,binding)
bindingInfo.setGroupOrder(col,grouping)
bindingInfo.setTimeSeries(col,boolean)
bindingInfo.getColumnOrder(col)
bindingInfo.setColumnOrder(col,order)
bindingInfo.isTopNReverse(col)
bindingInfo.setTopNReverse(col,boolean)
bindingInfo.getTopNSummaryCol(col)
bindingInfo.setTopNSummaryCol(col,agg)
bindingInfo.getFormula(col,binding)
bindingInfo.setFormula(col, formula, binding)
bindingInfo.getPercentageType(col,binding)
bindingInfo.setPercentageType(col,type)
bindingInfo.getSecondaryField(col, binding)
bindingInfo.setSecondaryField(col1, col2, binding)
bindingInfo.setColorField(col, type)
bindingInfo.setShapeField(col, type)
bindingInfo.setSizeField(col, type)
bindingInfo.setTextField(col, type)
bindingInfo.setCandleBindingField(arr)
bindingInfo.getCandleBindingField(measure)
bindingInfo.setStockBindingField(arr)
bindingInfo.getStockBindingField(measure)
Bind the specified field to a ShapeFrame (shape coding). The aesthetic treatment applied to the chart elements depends on the type of the chart:
• Bar-type charts apply a TextureFrame, which draws different fill patterns. (For dimension binding, the default is the CategoricalTextureFrame. For measure binding, the default is LeftTiltTextureFrame.)
• Line-type charts apply a LineFrame, which draws different line styles. (For dimension binding, the default is the CategoricalLineFrame. For measure binding, the default is LinearLineFrame.)
• Point-type charts apply a ShapeFrame, which draws different shape types. (For dimension binding, the default is the CategoricalShapeFrame. For measure binding, the default is FillShapeFrame.)
Parameter
col Field to be used for shape-coding
type Chart Constants constant: STRING, DATE, or NUMBER
Example (Dimension field)
// For a dimension (categorical) field:
Chart1.bindingInfo.setShapeField("Employee",Chart.STRING);

Example (Measure field)
// For a measure (numerical) field:
Chart1.bindingInfo.setShapeField("Total",Chart.NUMBER);

See Also
bindingInfo.textureFrame, for information on setting the TextureFrame.
bindingInfo.lineFrame, for information on setting the LineFrame.
bindingInfo.shapeFrame, for information on setting the ShapeFrame.
| << bindingInfo.getShapeField() | © 1996-2013 InetSoft Technology Corporation (v11.4) | bindingInfo.getSizeField() >> |