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 = {
4141 } ,
4242 // TODO: better way to determine ordinal vs continuous axes,
4343 // 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+ } ) ,
4656 tickformat : {
4757 valType : 'string' ,
4858 dflt : '3s' ,
You can’t perform that action at this time.
0 commit comments