File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ export default class Xaxis extends Component {
25
25
xTickPadding : 3 ,
26
26
xInnerTickSize : 6 ,
27
27
xOuterTickSize : 6 ,
28
+ xTickExclude : [ ] ,
28
29
...CommonProps
29
30
}
30
31
@@ -47,6 +48,7 @@ export default class Xaxis extends Component {
47
48
xTickPadding : PropTypes . number ,
48
49
xTickFormat : PropTypes . func ,
49
50
xTicks : PropTypes . array ,
51
+ xTickExclude : PropTypes . array ,
50
52
style : PropTypes . object
51
53
}
52
54
@@ -73,7 +75,8 @@ export default class Xaxis extends Component {
73
75
xLabel,
74
76
xLabelPosition,
75
77
labelOffset,
76
- style
78
+ style,
79
+ xTickExclude
77
80
} = this . props ;
78
81
79
82
var t ;
@@ -127,6 +130,7 @@ export default class Xaxis extends Component {
127
130
tickSizeOuter = { xTickSizeOuter }
128
131
ticks = { xTicks }
129
132
style = { style }
133
+ tickExclude = { xTickExclude }
130
134
/>
131
135
{ axisLabel }
132
136
</ g >
You can’t perform that action at this time.
0 commit comments