File tree Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -41,8 +41,18 @@ module.exports = {
41
41
} ,
42
42
// TODO: better way to determine ordinal vs continuous axes,
43
43
// so users can use tickvals/ticktext with a continuous axis.
44
- tickvals : extendFlat ( { } , axesAttrs . tickvals , { editType : 'calc' } ) ,
45
- ticktext : extendFlat ( { } , axesAttrs . ticktext , { editType : 'calc' } ) ,
44
+ tickvals : extendFlat ( { } , axesAttrs . tickvals , {
45
+ editType : 'calc' ,
46
+ description : [
47
+ 'Sets the values at which ticks on this axis appear.'
48
+ ] . join ( ' ' )
49
+ } ) ,
50
+ ticktext : extendFlat ( { } , axesAttrs . ticktext , {
51
+ editType : 'calc' ,
52
+ description : [
53
+ 'Sets the text displayed at the ticks position via `tickvals`.'
54
+ ] . join ( ' ' )
55
+ } ) ,
46
56
tickformat : {
47
57
valType : 'string' ,
48
58
dflt : '3s' ,
You can’t perform that action at this time.
0 commit comments