ShapeMapItem Property (CategoryKey)

Spotfire 15.0 API Reference
Gets or sets the shape for a category.

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

C#
public MarkerShape this[
	CategoryKey category
] { get; set; }

Parameters

category
Type: Spotfire.Dxp.Application.VisualsCategoryKey
The category.

Return Value

Type: MarkerShape
The shape for the category.
Examples

The following sample shows how to set the shape for the categories "male" and "female":
C#
plot.ShapeAxis.ShapeMap[new CategoryKey("male")] = new MarkerShape(MarkerType.Square);
plot.ShapeAxis.ShapeMap[new CategoryKey("female")] = new MarkerShape(MarkerType.Circle);
Version Information


See Also

Reference