(kendoUI图表)可以使用调整大小窗口重新调整其大小?

时间:2012-07-06 15:23:59

标签: javascript css highcharts kendo-ui

以下是饼图的设置:

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,怎么做这样的设置?

由于

1 个答案:

答案 0 :(得分:9)

在链接的帖子中应用我的想法,只需挂钩窗口调整大小事件并重绘图表:

$(window).resize(function() 
{    
    var chart = $("#chart").data("kendoChart");
    chart.refresh();
});

工作小提琴here