@mui/x-charts
Version:
The community edition of MUI X Charts components.
8 lines • 433 B
TypeScript
import type { ProcessedBarData, ProcessedBarSeriesData } from "../types.js";
export declare function createPath(barData: ProcessedBarData, borderRadius: number): string;
/**
* Hook that creates bar paths for a given series data. Used by the batch bar renderer.
* @param seriesData
* @param borderRadius
*/
export declare function useCreateBarPaths(seriesData: ProcessedBarSeriesData, borderRadius: number): Map<string, string[]>;