import { PieChartVisualizationSettingsBase } from './PieChartVisualizationSettingsBase'; export declare abstract class RoundChartVisualizationSettingsBase extends PieChartVisualizationSettingsBase { /** * Gets or sets the slice rotation, in degrees, to change the order in which your data is presented. Supported values include 0, 90, 180, and 270. */ startPosition?: number; /** * Gets or sets the option to see all data values in the field added as the "Label", including data items with the value of 0 (zero). */ showZeroValuesInLegend: boolean; }