UNPKG

@gooddata/react-components

Version:

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

16 lines (13 loc) 347 B
// (C) 2019 GoodData Corporation export type AxisType = "xaxis" | "yaxis" | "secondary_xaxis" | "secondary_yaxis"; export interface IAxisNameProperties { visible?: boolean; position?: string; } export interface IAxisProperties { name: AxisType; title: string; subtitle?: string; primary: boolean; visible: boolean; }