We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d60d0a commit 1c5cc6fCopy full SHA for 1c5cc6f
packages/vchart/src/chart/radar/radar-transformer.ts
@@ -30,19 +30,6 @@ export class RadarChartSpecTransformer<
30
31
transformSpec(spec: T) {
32
super.transformSpec(spec);
33
- //默认不显示轴的domainLine和Tick
34
- (spec.axes ?? []).forEach((axis: any) => {
35
- if (axis.orient === 'radius') {
36
- ['domainLine', 'label', 'tick'].forEach(configName => {
37
- if (!axis[configName]) {
38
- axis[configName] = { visible: false };
39
- }
40
- });
41
- if (!axis.grid) {
42
- axis.grid = { visible: true };
43
44
45
46
47
// set default config for crosshair
48
spec.crosshair = array(spec.crosshair || {}).map(crosshairCfg => {
0 commit comments