Skip to main content

PolarLegendModifier

The PolarLegendModifier📘 is a modifier that displays a legend for the series in a polar chart. It provides information about the series, such as their names and colors, enhancing the user experience by allowing for easy identification of data series.

const { PolarLegendModifier } = SciChart;
// or for npm: import { PolarLegendModifier } from "scichart";

// Add PolarLegendModifier behaviour to the chart
sciChartSurface.chartModifiers.add(
new PolarLegendModifier({
showCheckboxes: true,
showSeriesMarkers: true
})
);

This results in the following behavior:

See Also:​