/*! * * Wijmo Library 5.20251.40 * https://developer.mescius.com/wijmo * * Copyright(c) MESCIUS inc. All rights reserved. * * Licensed under the End-User License Agreement For MESCIUS Wijmo Software. * us.sales@mescius.com * https://developer.mescius.com/wijmo/licensing * */ /** * {@module wijmo.react.chart.radar} * Contains React components for the wijmo.chart.radar module. */ /** * */ export declare var ___keepComment: any; import { WjRef, WjForwardRefExoticComponent } from 'wijmo/wijmo.react.base'; import { FlexChartAxisEvents, FlexChartAxisInputs, FlexChartCoreEvents, FlexChartCoreInputs, SeriesBaseEvents, SeriesBaseInputs } from 'wijmo/wijmo.react.chart'; import { Stacking } from 'wijmo/wijmo.chart'; import * as wjcChartRadar from 'wijmo/wijmo.chart.radar'; export declare type FlexRadarInputs = FlexChartCoreInputs & { chartType?: wjcChartRadar.RadarChartType | string; reversed?: boolean; stacking?: Stacking | string; startAngle?: number; totalAngle?: number; tooltipContent?: any; }; export declare type FlexRadarEvents = FlexChartCoreEvents & {}; export declare const FlexRadarMeta: { inputs: string[]; events: string[]; }; export declare type FlexRadarProps = FlexRadarInputs & FlexRadarEvents; export declare type FlexRadarRef = WjRef; /** * React component for the {@link wijmo.chart.radar.FlexRadar} control. * * The flex-radar component may contain * the following child components: * {@link wijmo.react.chart.animation.FlexChartAnimation} * , {@link wijmo.react.chart.radar.FlexRadarAxis} * , {@link wijmo.react.chart.radar.FlexRadarSeries} * and {@link wijmo.react.chart.FlexChartLegend}. * * The component supports all properties and events of the pure JavaScript {@link wijmo.chart.radar.FlexRadar} control it represents. * * The component includes an initialized event that is raised when the control is initialized after it is added to the page. * You can use this event to perform further initialization in addition to setting properties in JSX. * The signature of the handler function is the same as any other Wijmo event handlers. */ export declare const FlexRadar: WjForwardRefExoticComponent; export declare type FlexRadarAxisInputs = FlexChartAxisInputs & {}; export declare type FlexRadarAxisEvents = FlexChartAxisEvents & {}; export declare const FlexRadarAxisMeta: { inputs: string[]; events: string[]; }; export declare type FlexRadarAxisProps = FlexRadarAxisInputs & FlexRadarAxisEvents; export declare type FlexRadarAxisRef = WjRef; /** * React component for the {@link wijmo.chart.radar.FlexRadarAxis} class. * * The flex-radar-axis component should be contained in * one of the following components: * {@link wijmo.react.chart.radar.FlexRadar} * or {@link wijmo.react.chart.radar.FlexRadarSeries}. * * The component supports all properties and events of the pure JavaScript {@link wijmo.chart.radar.FlexRadarAxis} class it represents. * * The component includes an initialized event that is raised when the control is initialized after it is added to the page. * You can use this event to perform further initialization in addition to setting properties in JSX. * The signature of the handler function is the same as any other Wijmo event handlers. */ export declare const FlexRadarAxis: WjForwardRefExoticComponent; export declare type FlexRadarSeriesInputs = SeriesBaseInputs & { chartType?: wjcChartRadar.RadarChartType | string; }; export declare type FlexRadarSeriesEvents = SeriesBaseEvents & {}; export declare const FlexRadarSeriesMeta: { inputs: string[]; events: string[]; }; export declare type FlexRadarSeriesProps = FlexRadarSeriesInputs & FlexRadarSeriesEvents; export declare type FlexRadarSeriesRef = WjRef; /** * React component for the {@link wijmo.chart.radar.FlexRadarSeries} class. * * The flex-radar-series component should be contained in * a {@link wijmo.react.chart.radar.FlexRadar} component. * * The flex-radar-series component may contain * a {@link wijmo.react.chart.radar.FlexRadarAxis} child component. * * The component supports all properties and events of the pure JavaScript {@link wijmo.chart.radar.FlexRadarSeries} class it represents. * * The component includes an initialized event that is raised when the control is initialized after it is added to the page. * You can use this event to perform further initialization in addition to setting properties in JSX. * The signature of the handler function is the same as any other Wijmo event handlers. */ export declare const FlexRadarSeries: WjForwardRefExoticComponent;