@progress/kendo-angular-chart-wizard
Version:
Kendo UI Angular Chart Wizard component
58 lines (57 loc) • 1.47 kB
JavaScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { ChartWizardCommon } from '@progress/kendo-charts';
/**
* @hidden
*/
export const fontSizes = ChartWizardCommon.fontSizes;
/**
* @hidden
*/
export const fontNames = ChartWizardCommon.fontNames;
/**
* @hidden
*/
export const createState = ChartWizardCommon.createState;
/**
* @hidden
*/
export const updateState = ChartWizardCommon.updateState;
/**
* @hidden
*/
export const mergeStates = ChartWizardCommon.mergeStates;
/**
* @hidden
*/
export const isCategorical = ChartWizardCommon.isCategorical;
/**
* @hidden
*/
export const parseFont = ChartWizardCommon.parseFont;
/**
* @hidden
*/
export const ActionTypes = ChartWizardCommon.ActionTypes;
/**
* @hidden
*/
export const rotations = [
{ text: 'Auto', value: 'auto' },
{ text: '0°', value: 0 },
{ text: '45°', value: 45 },
{ text: '90°', value: 90 },
{ text: '135°', value: 135 },
{ text: '180°', value: 180 }
];
/**
* @hidden
*/
export const positions = [
{ text: 'Top', value: 'top' },
{ text: 'Bottom', value: 'bottom' },
{ text: 'Left', value: 'left' },
{ text: 'Right', value: 'right' }
];