amcharts - Disable cursor text on secondary value axis in amstock chart -


i have stock panel 2 stockgraph: ohlc graph , turnover graph have own valueaxis in 3.14.5 cursor text shown on 1st valueaxis [i.e. ohlc graph's valueaxis] not on 2nd valueaxis try 3.18.6 , cursor text show on both valueaxis how can disable text on 2nd valueaxis ?

you can disable value balloons individual value axes setting balloon.enabled variable in axis' config. i.e.:

use property disable balloons value axes. i.e.:

"valueaxes": [{   // ...   // value balloons shown }, {   // ...   "balloon": {     "enabled": false   }   // value balloons not shown }] 

Comments