primevue-mirror/components/lib/chart/style/ChartStyle.d.ts

20 lines
341 B
TypeScript
Raw Normal View History

/**
*
* Chart groups a collection of contents in tabs.
*
* [Live Demo](https://www.primevue.org/chart/)
*
* @module chartstyle
*
*/
2023-10-02 13:15:41 +00:00
import { BaseStyle } from '../../base/style';
export enum ChartClasses {
2024-05-22 13:52:02 +00:00
/**
* Class name of the root element
*/
root = 'p-chart'
}
2023-10-02 13:15:41 +00:00
export interface ChartStyle extends BaseStyle {}