jQuery-系列以外的HighCharts标签(条形图)

问题描述 投票:2回答:1
$(function () {
$('#container').highcharts({
        chart: {
            type: 'bar',
            backgroundColor: null,
            width: 360
        },
        title: {
            text: null,
            style: {
                display: 'none'
            }
        },
        subtitle: {
            text: null,
            style: {
                display: 'none'
            }
        },
        credits: {
            enabled: false
        },
        exporting: {
            enabled: false
        },
        xAxis: {
            categories: ['Cat 1', 'Cat 2', 'Cat 3', 'Cat 4', 'Cat 5', 'Cat 6', 'Cat 7', 'Cat 8', 'Cat 9', 'Cat 10'],
            title: {
                text: null
            }
        },
        yAxis: {
            min: 0,
            max: 10,
            gridLineWidth: 0,
            minorGridLineWidth: 0,
            title: {
                text: null
            },
            labels: {
                enabled: false
            }
        },
        tooltip: {
            enabled: false
        },  
        plotOptions: {
            bar: {
                dataLabels: {
                    enabled: true
                }
            },
            series: {
                dataLabels: {
                    crop: false,
                    enabled: true,
                    y: -2,
                    inside: false
                }
            }
        },
        series: [{
            showInLegend: false,
            name: '',
            color: '#CCC',
            data: [1, 2, 3, 9.4, 5, 6, 8, 9, 9, 9.5]

    }]
});
});

jsfiddle:http://jsfiddle.net/uNrW2/1/

我似乎无法使系列数据的标签始终显示在条形图的右侧。我已经遍历了所有API,但似乎找不到阻止该文本移入该栏中的选项。

有人知道为什么会这样吗?非常感谢您的宝贵时间!

jquery charts highcharts
1个回答
5
投票

您错过了API中名为plotOptions.series.dataLabels.overflowAPI)的一个选项:


0
投票

真的很棒的答案,非常简单,非常感谢。它彻底帮助了我。

© www.soinside.com 2019 - 2024. All rights reserved.