剑道柱状图-系列标签在顶部



如何改变剑道柱状图系列标签的定位?考虑以下内容:http://jsfiddle.net/ZPUr4/149/

在图表中,对于正值,条形值在顶部,对于负值,条形值在底部。

如何将系列标签值定位在正负条的顶部?

如何使所有的标签值在同一水平线,即使条值不同?

如果我的问题不清楚,请告诉我。

下面是HTML代码:
    <div id="example" class="k-content">
    <div id="chart"></div>
</div>

JS代码:

function createChart() {
        $("#chart").kendoChart({
            title: {
                text: "Site Visitors"
            },
            legend: {
                position: "bottom"
            },
            seriesDefaults: {
                type: "column",
                labels: {
                    visible: true,
                    background: "transparent",
                }
            },
            series: [{
                name: "Total Visits",
                data: series1,
                gap: 1.0,
                spacing: 0
            }, {
                name: "Unique visitors",
                data: series2,
                gap: 1.0
            }],
            valueAxis: {
                min: -200000,
                max: 200000,
                axisCrossingValue: 50000,  
                line: {
                    visible: false
                },
                title: {
                    text: "Availability"
                },
                color: 'blue'
            },
            categoryAxis: {
               color: "blue",
                width: 25,
                majorGridLines: {
                    visible: true,
                    position: "bottom"
                },
                line: {
                    width: 3,
                }
            },
            tooltip: {
                visible: true,
                format: "{0}"
            }
        });
    }
var series1=[56000, 63000, 74000, 91000, 117000, 158000];
var series2= [-52000, 34000, 23000, -98000, 67000, 83000];
    $(document).ready(function () {
        createChart();
        $("#example").bind("kendo:skinChange", createChart);
        var chart = $("#chart").data("kendoChart"),
            firstSeries = chart.options.series;
    });

谢谢。

为了指定值在顶部,您应该使用:

labels: {
    visible: true,
    position: "top"
}

但是有了这个,你在栏内放置了数字。为了将移到之外,您需要执行:

labels: {
    visible: true,
    position: "top",
    padding: {
        top: -20
    }
}

padding.top加到20px的位置应该足够了。

您的JSFiddle在这里修改:http://jsfiddle.net/OnaBai/ZPUr4/178/

有点晚了,但也许对你或其他人还是有用的。

我对我的网格做了很多自定义样式,下面的代码允许我将标签放在图表的同一行上。

function chartBound(e) {
    var chartData = e.sender;
    var oldPrivateRedraw = chartData._redraw;
    if (oldPrivateRedraw.toString().indexOf('Extend') == -1) { //not already extended
        //Extends kendos function so we can do custom styling to svg components etc
        chartData._redraw = function () {
            oldPrivateRedraw.apply(chartData);
            PostGraphDrawEvents();
        };
    }
}
function PostGraphDrawEvents() {
    // Move the labels to the top of the graph
    $.each($('#@chartId svg > g > text[style*="11px"]'), function (index, node) {
        var clonedNode = node.cloneNode(true);
        $(clonedNode).attr('y', 10);
        $(node).before(clonedNode);
    });
}

相关内容

  • 没有找到相关文章

最新更新