@visactor/vchart
Version:
charts lib based @visactor/VGrammar
12 lines (11 loc) • 320 B
TypeScript
import type { IDomainLine, ITick, ITitle, ILabel } from '../../interface';
import type { IPolarGrid } from './common';
export interface IPolarAxisCommonTheme {
grid?: IPolarGrid;
subGrid?: IPolarGrid;
domainLine?: IDomainLine;
label?: ILabel;
title?: ITitle;
tick?: ITick;
subTick?: ITick;
}