valueFormats
addConfidenceIntervalTarget(measure, colors, values, options)
addPercentageTarget(measure, colors, values, options)
addPercentileTarget(measure, colors, values, options)
addQuantileTarget(measure, colors, values, options)
addStandardDeviationTarget(measure, colors, values, options)
addTargetBand(measure, colors, values, options)
addTargetLine(measure, colors, values, options)
setLabelAliasOfColorLegend(value, alias)
Provides access to value formatting for Charts that have 'Multiple Styles' enabled. (See Setting a Chart Style for an Individual Dataset in Dashboard Design or Setting a Chart Style for an Individual Dataset in Report Design for information about the 'Multiple Styles' property.) To format a measure in a multiple-style chart, set the valueFormats property for the desired measure.
Example
Chart1.valueFormats['Sum(Quantity Purchased)'].color= [255,0,0];
Chart1.valueFormats['Sum(Quantity Purchased)'].rotation = 30;
Chart1.valueFormats['Sum(Total)'].color = [0,0,255];
Chart1.valueFormats['Sum(Total)'].format = [Chart.DECIMAL_FORMAT,"$#,###.00"]
Chart1.valueFormats['Sum(Total)'].font = 'Lucida Sans Unicode-BOLD-8';

For information about the valueFormats sub-properties (color, font, format, rotation), see the following: valueColor, valueFont, valueFormat, valueRotation. To format all measures in a multiple-style chart, use one of these properties.
See Also
valueColor, to specify value color in a single-style chart.
valueFont, to specify value font in a single-style chart.
valueFormat, to specify value format in a single-style chart.
valueRotation, to specify value rotation in a single-style chart.
| << valueColor | © 1996-2013 InetSoft Technology Corporation (v11.5) | valueVisible >> |