UNPKG

@gooddata/react-components

Version:

GoodData.UI - A powerful JavaScript library for building analytical applications

21 lines (20 loc) 540 B
/** * The properties of the {VisualizationObject.IMeasure} necessary for the creation of the title of the ad hoc measures. * * @internal */ export interface IMeasureTitleProps { localIdentifier: string; title?: string; alias?: string; } /** * The properties of the {VisualizationObject.IArithmeticMeasureDefinition} necessary for the creation of the title * of the arithmetic measure. * * @internal */ export interface IArithmeticMeasureTitleProps { operator: string; masterMeasureLocalIdentifiers: string[]; }