ScatterPlotSetLabelRenderer Method TIBCO Spotfire 7.6 API Reference
Sets the label renderer.

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

C#
public ValueRendererSettings SetLabelRenderer(
	TypeIdentifier typeId
)

Parameters

typeId
Type: Spotfire.Dxp.Framework.DocumentModelTypeIdentifier
The type id of the renderer.

Return Value

Type: ValueRendererSettings
The label renderer settings associated with the type id.
Exceptions

ExceptionCondition
ArgumentNullExceptionThrows ArgumentNullException if typeId is null.
ArgumentExceptionThrown if typeId is not a type identifier for a registered ValueRenderer.
Examples

The following example snippet shows how to set the label renderer for the plot to the geometry renderer.
C#
GeometryRendererSettings geometryRendererSettings = (GeometryRendererSettings)scatterplot.SetLabelRenderer(ValueRendererTypeIdentifiers.GeometryRenderer);
geometryRendererSettings.BorderColor = Color.Red;
Version Information

Supported in: 7.6, 7.5, 7.0, 6.5, 6.0, 5.5, 5.0
See Also

Reference