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