嗨,我有剑道图表在我的应用程序中,它是在右侧显示工具提示,我想改变工具提示的位置到左侧。怎么做这个。图表代码是
$("#chart").kendoChart({
title: {
text: "Internet Users"
},
legend: {
position: "bottom"
},
seriesDefaults: {
type: "column"
},
series: [{
name: "World",
data: [15.7, 16.7, 20, 23.5, 26.6]},
{
name: "United States",
data: [67.96, 68.93, 75, 74, 78]}],
valueAxis: {
labels: {
format: "{0}%"
}
},
categoryAxis: {
categories: [2005, 2006, 2007, 2008, 2009]
},
tooltip: {
visible: true,
template: "#= category # value: #= value # %"
}
});
我的小提琴是http://jsfiddle.net/2dNcP/88/
试试这个
.k-tooltip{margin-left: -100 px;}
查看此链接:http://www.roelvanlisdonk.nl/?p=3831
同上的美国东部时间:
<style type="text/css">
#myDivId_tt_active {
background-color: #FFFFFF;
left: 14px;
}
</style>
<div id="myDivId"/>
抓住你的元素ID和连接tt(从工具提示我猜),并激活它的样式。就这么简单。