ShapeAxis3D ShapeMap Property TIBCO Spotfire 6.0 API Reference
Controls the shape for a specific data value.

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

public ShapeMap3D ShapeMap { get; }

Property Value

Type: ShapeMap3D
Examples

The following example snippet shows how to set shapes for specific values.
// Set shape by the column named Fruit.
scatterPlot3D.ShapeAxis.Expression = "<Fruit>" 

// Set the shape on each fruit
scatterPlot3D.ShapeAxis.ShapeMap["Apple"] = Shapes3D.Cube;
scatterPlot3D.ShapeAxis.ShapeMap["Pear"] = Shapes3D.Sphere;
See Also