Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a chart that looks like this: http://jsfiddle.net/rtGFm/37/

I would like to have a "sort" button that sorts high to low each category, putting the columns in a different order for each category. Is this possible with HighCharts?

$(function () {
var chart;
$(document).ready(function() {
    chart = new Highcharts.Chart({
        chart: {
            renderTo: 'container',
            type: 'column'
        },
        title: {
            text: ''
        },
        subtitle: {
            text: ''
        },
        xAxis: {
            categories: [
                'foreclosures',
                'nuisances',
                'distance from city center'
            ]
        },
        yAxis: {
            min: 0,
            title: {
                text: ''
            }
        },
        legend: {

        },
        tooltip: {
            formatter: function() {
                return ''+
                    this.x +': '+ this.y +' mm';
            }
        },
        plotOptions: {
            column: {
                pointPadding: 0.2,
                borderWidth: 0
            }
        },
            series: [{
            name: 'Alger Heights',
            data: [49.9, 71.5, 50]

        }, {
            name: 'Shawmut Hills',
            data: [83.6, 78.8, 67]

        }, {
            name: 'Baxter',
            data: [48.9, 38.8, 100]

        }, {
            name: 'Midtown',
            data: [42.4, 33.2, 80]

        }, {
    type: 'scatter',
    data: [55,60,70],
    marker: {
        symbol: 'square',
        lineColor: '#FFFFFF',
        lineWidth: 1,
        radius: 8
    },
            name: 'Average'

}]
    });
});

});

share|improve this question
Would "No" be an acceptable answer? – Jugal Thakkar Oct 23 '12 at 19:25
If it is not possible, then yeah. – cstef Oct 23 '12 at 20:44
then that's the answer :D – Jugal Thakkar Oct 23 '12 at 20:56
4  
Well, I would say it is "No" from Highcharts API. However, you can create a js function that re-orders the objects in the series object. Then destroy/create the chart with newly ordered series array. – wergeld Oct 24 '12 at 12:16
I don't think that would work either. What is being requested is that the series order different within each group based on the sort. I don't see a way to do that in one chart. My suggestion would be to make this three bar charts in the form of small multiples - [link]en.wikipedia.org/wiki/Small_multiple[/link] – jlbriggs Mar 18 at 16:18

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.