I'm trying to integrate a MariMekko / Market type of chart in my application. I found an interesting implementation here:
http://jsfiddle.net/h2np93k1/39/
This code constructs a treemap and adds axis to it. That is done by this snippet:
Highcharts.seriesTypes.treemap.prototype.bindAxes = function() {
Highcharts.Series.prototype.bindAxes.call(this);
};
However, if I understand correctly, this will cause all my treemap
charts to have axis. I don't want this, I'd like to keep the axis only for my marimekko maps.
What whould be the best way to accomplish this? Is there an easy way to extend a charttype for example?