20 lines
355 B
TypeScript
20 lines
355 B
TypeScript
|
|
/**
|
||
|
|
*
|
||
|
|
* Chart groups a collection of contents in tabs.
|
||
|
|
*
|
||
|
|
* [Live Demo](https://www.primevue.org/chart/)
|
||
|
|
*
|
||
|
|
* @module chartstyle
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
import type { BaseStyle } from '@primevue/core/base/style';
|
||
|
|
|
||
|
|
export enum ChartClasses {
|
||
|
|
/**
|
||
|
|
* Class name of the root element
|
||
|
|
*/
|
||
|
|
root = 'p-chart'
|
||
|
|
}
|
||
|
|
|
||
|
|
export interface ChartStyle extends BaseStyle {}
|