TeeChart可以在光标点绘制值标签吗?

时间:2012-12-31 22:32:27

标签: html5 teechart

我正在寻找可以在光标点显示价值的HTML5图表

http://www.tradeviewforex.com/forex-blog/tip-14-how-to-use-the-crosshair-on-metatrader-4

我发现StockChartX可以做到这一点 http://developer.modulusfe.com/stockchartx_html5/

(点击绘图 - >注释)

但我可以付出这个代价:P

谢谢你的回答!

聚苯乙烯。抱歉我的英语不好。

2 个答案:

答案 0 :(得分:1)

可以使用TeeChart HTML5中的注释工具完成类似的操作。请参阅示例here

答案 1 :(得分:0)

此外,如果需要,您可以格式化工具提示。

tip = new Tee.ToolTip(Chart1);
Chart1.tools.add(tip);

tip.format.font.style = "11px Verdana";
tip.render = "canvas";
tip.onshow = function (tool, series, index) {
    scaling = 2;
    poindex = index;
}
tip.onhide = function () {
    scaling = 0;
    poindex = -1;
}
tip.ongettext = function (tool, text) {

    var txt = tool.currentSeries.title + ":\n" + "Value: " + text + tool.currentSeries.units + "\n" + jsonDataArray[0].evDataTime[tool.currentIndex] + " (ms)";
    model.MouseOverY(text + tool.currentSeries.units);
    model.MouseOverX(jsonDataArray[0].evDataTime[tool.currentIndex] + " (ms)");
    model.SelectedSeries(tool.currentSeries.title);
    return txt;
}