2012-12-31 55 views

回答

1

TeeChart HTML5中的Annotation工具可以做類似的事情。請參閱示例here

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; 
} 
+0

oops忽略我的'模型'。只是文字部分。其餘的用於其他目的。我只是用代碼不加思考地粘貼 –