constants.ts 309 B

1234567891011121314
  1. import { IStackConfig } from './types'
  2. import { EmptyFontSetting } from 'components/StyleSetting/Font'
  3. export const StackItemType = 'MetricCustomStack'
  4. export const EmptyStack: IStackConfig = {
  5. on: false,
  6. percentage: false,
  7. group: [],
  8. sum: {
  9. show: false,
  10. font: { ...EmptyFontSetting }
  11. }
  12. }