@mui/x-charts
Version:
The community edition of MUI X Charts components.
9 lines • 367 B
text/typescript
import { type Position } from "../models/position.mjs";
export type ChartsLegendPosition = {
/**
* The position of the legend in relation to the chart.
* This property is only passed to the Chart components, e.g. `ScatterChart`, and not the slots themselves.
* If customization is needed, simply use the composition pattern.
*/
position?: Position;
};