Kendo UI line Graph,如何防止标签被绘制到图形之外?

Posted

技术标签:

【中文标题】Kendo UI line Graph,如何防止标签被绘制到图形之外?【英文标题】:KendoUI line Graph, How to keep labels from being drawn outside the graph? 【发布时间】:2012-06-04 04:33:58 【问题描述】:

我正在使用 KendoUI 折线图。我在折线图上有标签,标签在顶部被切断。有没有办法防止这种情况发生?

这是一个可以玩的 jsFiddle 项目:http://jsfiddle.net/rodneyhickman/2eWYg/1/

这是我的标记:

<div style="padding:20px;" >
   <div id="divChart"></div>
</div>

这是我的脚本:

jQuery('#divChart').kendoChart(
seriesDefaults: 
    type: "line",
    missingValues: "interpolate"
,
legend: 
    position: "bottom"
,
tooltip: 
    visible: true,
    format: "0%"
,
valueAxis: 
    min: 70,
    max: 90,
    plotBands: [
        from: 70,
        to: 75,
        color: "#f5f5f5",
    
        from: 80,
        to: 85,
        color: "#f5f5f5",
    
        from: 90,
        to: 95,
        color: "#f5f5f5"]
,
series: [
    type: "line",
    name: "Product 1",
    color: "#004990",
    width: 1,
    markers: 
        background: "#004990"
    ,
    tooltip: 
        visible: true,
        template: "<b>Product 1</b><br/>Current Score: #= value #<br/>#= category # "
    ,
    labels: 
        visible: true
    ,
    data: [88.71, 88.87, 88.91, 89.39, 89.44, 89.47, 89.39, 89.38, 89.25, 88.81, 88.9, 88.84, 88.79],

    type: "line",
    name: "Market Segment",
    color: "#da7633",
    width: 1,
    markers: 
        background: "#da7633"
    ,
    tooltip: 
        visible: true,
        template: "<b>Market Segment</b><br/>Current Score: #= value #<br/>#= category # "
    ,
    data: [75.9, 75.58, 75.54, 75.19, 74.9, 74.42, 74.51, 74.72, 74.55, 74.44, 74.15, 73.86, 73.79]],
categoryAxis: 
    labels: 
        rotation: -45,
        step: 1,
        skip: 0
    ,
    categories: ["Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec", "Jan - 2012", "Feb", "Mar", "Apr"]

);​

【问题讨论】:

【参考方案1】:

您可以配置系列以在点下方添加标签 - 根据the docs;

notes: 
  position: "bottom"
,

【讨论】:

【参考方案2】:

通过向 plotArea 添加边距,可以为标签腾出空间。

绘图区域: 利润: 最高:20, 左:5, 对:5, 底部:5 ,

解决办法如下:

http://jsfiddle.net/rodneyhickman/2eWYg/2/

【讨论】:

以上是关于Kendo UI line Graph,如何防止标签被绘制到图形之外?的主要内容,如果未能解决你的问题,请参考以下文章

防止kendo ui网格弹出编辑器在验证错误后关闭

Kendo UI for Angular:Kendo UI Datepicker 禁用输入/仅文本框部分

使用 Kendo Dataviz Vertical Bullet Graph,如何添加类似于 Bar Graph 的标签?

(10)kendo UI使用基础介绍与问题整理——loading

Kendo UI for jQuery使用教程:支持Web浏览器

记住在 Kendo-UI 中刷新时扩展的细节网格