如何在剑道图中找到工具提示的位置

use*_*545 5 tooltip kendo-ui kendo-dataviz

嗨我在我的应用程序中有kendo图表,它在右侧显示工具提示我想要将工具提示的位置改为左侧.如何做到这一点.我的图表代码是

         $("#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 # %"
}
      });
Run Code Online (Sandbox Code Playgroud)

我的小提琴是http://jsfiddle.net/2dNcP/88/

use*_*357 8

试试这个吧

.k-tooltip {margin-left:-100px; }