@highcharts/react
Version:
Official Highcharts integration for React
37 lines (36 loc) • 931 B
TypeScript
/**
* React integration.
* Copyright (c) 2025, Highsoft
*
* A valid license is required for using this software.
* See highcharts.com/license
*
* Built for Highcharts v.xx.
* Build stamp: 2025-07-17
*
*/
import React from "react";
import type { SeriesPieOptions } from "highcharts/highcharts";
import type { ICommonAttributes, ICommonSeriesAttributes, WithoutType } from "../Highcharts";
/**
* Pie series
*/
declare const Pie: {
(props: ICommonAttributes): React.JSX.Element;
Series: typeof PieSeries;
type: string;
};
interface PieSeriesProps extends ICommonSeriesAttributes {
options?: WithoutType<SeriesPieOptions>;
children?: React.ReactNode;
}
export declare function PieSeries(_props: PieSeriesProps): any;
export declare namespace PieSeries {
var type: string;
var _HCReact: {
type: string;
HC_Option: string;
childOption: string;
};
}
export default Pie;