Skip to content

Commit

Permalink
Merge pull request #17808 from breizh24/fix-17363
Browse files Browse the repository at this point in the history
fix(type): add overflow property to AxisLabelBaseOption interface. close #17363
  • Loading branch information
Ovilia authored Oct 27, 2022
2 parents 0a5d50a + 3dd1342 commit 817b84d
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 817b84d

Please sign in to comment.