You must be logged in to post your query.
Home › Forums › Chart Support › how to hide pushed values in tooltip
Tagged: tooltip
In this sma chart chart, is it possible to hide the sma values in the tooltip and display date, ohlc only? Thank you!
ok, I’ve figured this out. Just add “toolTipContent: null”.
stockChart.charts[1].addTo(“data”, {type: “line”, toolTipContent: null, color: colors[i], lineThickness: 1, dataPoints: sma, yValueFormatString: “#,###.00”, name: “SMA” + days[i]})
@jtian,
Glad that you figured it out :)
Yes, as you have mentioned setting toolTipContent to null will hide information related to that particular dataseries from the tooltip.
— Vishwas R Team CanvasJS
You must be logged in to reply to this topic. Login/Register