Skip to content

Commit

Permalink
fix(type): add overflow property to AxisLabelBaseOption interface. close
Browse files Browse the repository at this point in the history
 #17363

Co-authored-by: Giulio Mazzanti <[email protected]>
  • Loading branch information
breizh24 and Giuzzilla committed Oct 25, 2022
1 parent 053f84c commit 3dd1342
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/coord/axisCommonTypes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ import {
AreaStyleOption, ComponentOption, ColorString,
AnimationOptionMixin, Dictionary, ScaleDataValue, CommonAxisPointerOption
} from '../util/types';
import { TextStyleProps } from 'zrender/src/graphic/Text';


export const AXIS_TYPES = {value: 1, category: 1, time: 1, log: 1} as const;
Expand Down Expand Up @@ -230,6 +231,7 @@ interface AxisLabelBaseOption extends Omit<TextCommonOption, 'color'> {
hideOverlap?: boolean;
// Color can be callback
color?: ColorString | ((value?: string | number, index?: number) => ColorString)
overflow?: TextStyleProps['overflow']
}
interface AxisLabelOption<TType extends OptionAxisType> extends AxisLabelBaseOption {
formatter?: LabelFormatters[TType]
Expand Down

0 comments on commit 3dd1342

Please sign in to comment.