以下是饼图的设置:
function createChart(chartDataSource) {
$("#chart").kendoChart({
theme:$(document).data("kendoSkin") || "black",
title:{
text:"Efficiency"
},
legend:{
position:"bottom"
},
dataSource:chartDataSource,
series:[
{
type:"pie",
field:"val",
categoryField:"status"
}
],
tooltip:{
visible:true,
template:"${category} - #= kendo.format('{0:P}', percentage)#"
}
});
CSS样式:
#chart {
width: 50%;
height: 50%;
}
我知道Highcharts有reflow
布尔(reflow example in StackOverflow)完全符合我的要求。
我不确定kendoUI图表是否具有相同的回流设置,或者我应该使用CSS样式。如果去CSS,怎么做这样的设置?
由于
答案 0 :(得分:9)
在链接的帖子中应用我的想法,只需挂钩窗口调整大小事件并重绘图表:
$(window).resize(function()
{
var chart = $("#chart").data("kendoChart");
chart.refresh();
});
工作小提琴here。