@ebay/ui-core-react
Version:
Skin components build off React
22 lines • 564 B
TypeScript
import type Highcharts from "highcharts";
interface PiePoint extends Highcharts.Point {
shapeArgs: Highcharts.SVGAttributes;
}
interface PieSeries {
center: number[];
points: PiePoint[];
}
declare module "highcharts" {
interface SeriesTypeRegistry {
pie: {
prototype: PieSeries;
};
}
}
/**
* Extends the Highcharts pie series translate function to add 5px arc spacing
* between donut slices.
*/
export declare function ebayDonut(highcharts: typeof Highcharts): void;
export {};
//# sourceMappingURL=donut.d.ts.map