ClusterInsightResult.Coordinates Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Optional mapping of IDs to 2D coordinates used by the UX for visualization.
The map keys are string identifiers (for example, a cluster id or a sample id) and the values are the coordinates and visual size for rendering on a 2D chart.
This property is omitted unless the client requests coordinates (for example,
by passing includeCoordinates=true as a query parameter).
Example:
{
"cluster-1": { "x": 12, "y": 34, "size": 8 },
"sample-123": { "x": 18, "y": 22, "size": 4 }
}
Coordinates are intended only for client-side visualization and do not modify the canonical insights results.
public System.Collections.Generic.IDictionary<string,Azure.AI.Projects.ChartCoordinate> Coordinates { get; }
member this.Coordinates : System.Collections.Generic.IDictionary<string, Azure.AI.Projects.ChartCoordinate>
Public ReadOnly Property Coordinates As IDictionary(Of String, ChartCoordinate)