Highcharts具有向下钻取的柱形图,从x轴标签中删除格式化等超链接

时间:2014-06-27 13:36:15

标签: javascript jquery graph charts highcharts

我正在使用column chart drilldown。这是我的JSFIDDLE

现在我的问题是:

  • 我想从x轴上的标签中删除格式化等超链接 和dataLabels

正如您可以从我的小提琴中注意到我已经尝试使用以下代码在x轴标签上应用格式:

xAxis: {
         type: 'category',
         labels:{
               style:{
                    color: 'red',
                    textDecoration:"none"
               }
         } 
      },

并使用以下代码格式化dataLabels:

plotOptions: {
                    series: {
                        borderWidth: 0,
                        dataLabels: {
                            enabled: true,
                            format: '{point.y:.1f}%',
                            style:{
                               color: 'blue',
                               textDecoration:"none"
                            }
                        }
                    }
                }

但问题是:格式化仅适用于没有向下钻取数据的x轴标签和dataLabels 。虽然它适用于所有x轴标签和钻取数据的dataLabel!

有用的参考资料: http://api.highcharts.com/highcharts#xAxis.labels.style http://api.highcharts.com/highcharts#series.data.dataLabels

非常感谢任何帮助!

6 个答案:

答案 0 :(得分:4)

您需要覆盖钻取功能,以避免向标签添加操作。

http://jsfiddle.net/phpdeveloperrahul/FW64T/

 (function (H) {
    H.wrap(H.Point.prototype, 'init', function (proceed, series, options, x) {
        var point = proceed.call(this, series, options, x),
            chart = series.chart,
            tick = series.xAxis && series.xAxis.ticks[x],
            tickLabel = tick && tick.label;

        if (point.drilldown) {

            // Add the click event to the point label
            H.addEvent(point, 'click', function () {
                point.doDrilldown();
            });

            // Make axis labels clickable
            if (tickLabel) {
                if (!tickLabel._basicStyle) {
                    tickLabel._basicStyle = tickLabel.element.getAttribute('style');
                }
                tickLabel.addClass('highcharts-drilldown-axis-label')          .css({
                    'text-decoration': 'none',
                    'font-weight': 'normal',
                    'cursor': 'auto'
                    })
                    .on('click', function () {
                    if (point.doDrilldown) {
                        return false;
                    }
                });

            }
        } else if (tickLabel && tickLabel._basicStyle) {
        }

        return point;
    });
})(Highcharts);

答案 1 :(得分:3)

或者你可以用css

来做
.highcharts-drilldown-axis-label{
text-decoration: none !important;
}

答案 2 :(得分:3)

我们可以使用向下钻取选项来控制向下钻取。

 drilldown: {
//for axis label
        activeAxisLabelStyle: {
            textDecoration: 'none',
            fontStyle: 'italic'
        },
//for datalabel
        activeDataLabelStyle: {
            textDecoration: 'none',
            fontStyle: 'italic'
        }
}

[参考:http://jsfiddle.net/gh/get/library/pure/highcharts/highcharts/tree/master/samples/highcharts/drilldown/labels/][1]

答案 3 :(得分:0)

在钻取中只需输入

activeAxisLabelStyle: {
    cursor: 'pointer',
    color: '#0d233a',
    fontWeight: 'bold',
    textDecoration: 'none'          
}

答案 4 :(得分:0)

如果您的图表中只有一些列具有下钻,则需要修改Sebastian Bochan的答案,以便所有列都具有相同的标签:

(function (H) {
            //DATALABELS
            H.wrap(H.Series.prototype, 'drawDataLabels', function (proceed) {
                var css = this.chart.options.drilldown.activeDataLabelStyle;
                proceed.call(this);

                css.textDecoration = 'none';
                css.fontWeight = 'normal';
                css.cursor = 'default';
                css.color = 'blue';

                H.each(this.points, function (point) {

                    if (point.dataLabel) { // <-- remove 'point.drilldown &&' 
                        point.dataLabel
                            .css(css)
                            .on('click', function () {
                                return false;
                            });
                    }
                });
            });
        })(Highcharts);

另请注意这些设置是全局的,因此也会影响您可能拥有的任何其他图表。

答案 5 :(得分:0)

auto h = make_held(42);