ErrorBarsIndexedLowerExpression Property

Spotfire 14.2 API Reference
Gets the indexed Lower Expression property.

Namespace:  Spotfire.Dxp.Application.Visuals
Assembly:  Spotfire.Dxp.Application (in Spotfire.Dxp.Application.dll) Version: 64.0.19329.3263 (64.0.19329.3263)
Syntax

C#
public IndexedExpression IndexedLowerExpression { get; }

Property Value

Type: IndexedExpression
The indexed Lower Expression property.
Remarks

The indexed lower expression property is used instead of the LowerExpression property when there are multiple measures on the ScaleAxis (e.g. multiple columns on the Y axis in a line chart). Pre-processor syntax is not supported. Expressions with pre-processor syntax will be stored as static values, that is, what it evaluates to when set.
Examples

The following example sets the lower expression on the error bar for the MyProfit Y axis expression in a line chart:
lineChart.YAxis.Expression = "Avg([Sales]) as MySales, Avg([Profit]) as MyProfit";

CategoryKey profitKey = new CategoryKey("MyProfit");
lineChart.YAxis.ErrorBars.IndexedLowerExpression[profitKey] = "Avg([Profit Error])";
Version Information

Supported in: 14.2, 14.1, 14.0, 12.5, 12.4, 12.3, 12.2, 12.1, 12.0, 11.8, 11.7, 11.6, 11.5, 11.4
See Also

Reference