Search found 118 matches

Go to advanced search

by cosy
Thu Jun 07, 2018 3:03 pm
Forum: Highcharts Stock
Topic: Offline Export Downloads rgbcolor and canvg in IE
Replies: 4
Views: 1932
 
Jump to post

Re: Offline Export Downloads rgbcolor and canvg in IE

Hi Hardik, Internet Explorer does not provide out of the box functions to rasterize vector graphic properly. The additional scripts provide the functionality in Internet Explorer and therefore have to be loaded into the browser. More information about this can be found in our documentation: https://...
by cosy
Thu Jun 07, 2018 7:20 am
Forum: Highcharts Stock
Topic: Can't disable default xAxis crosshair label
Replies: 6
Views: 2733
 
Jump to post

Re: Can't disable default xAxis crosshair label

Hi Bill, Thank you for the feedback. The power of Highcharts does no only lies in the huge amount of options, but also in the possibilities to extend and modify most functionality in some way, although this needs some advanced insight in how Highcharts work. You can find more information about this ...
by cosy
Wed Jun 06, 2018 9:00 am
Forum: Highcharts Stock
Topic: Can't disable default xAxis crosshair label
Replies: 6
Views: 2733
 
Jump to post

Re: Can't disable default xAxis crosshair label

Hello again, Surprisingly there is a solution to this, as our colleagues at Black Label point out: https://jsfiddle.net/BlackLabel/zxaw348g/56/ (function(H){ H.wrap(H.Tooltip.prototype, 'renderSplit', function (proceed) { proceed.apply(this, [].slice.call(arguments, 1)); this.tt.destroy(); this.tt =...
by cosy
Wed Jun 06, 2018 8:54 am
Forum: Highcharts Stock
Topic: Can't disable default xAxis crosshair label
Replies: 6
Views: 2733
 
Jump to post

Re: Can't disable default xAxis crosshair label

Hi Bill, I tried to solve your issue, but as you can see, there will always be a small box on the axis: https://jsfiddle.net/zxaw348g/51/ The conclusion is, that you can not actually have split tooltips and crosshair labels at the same time. Therefor I suggest, you go instead with the shared tooltip...
by cosy
Wed Jun 06, 2018 7:18 am
Forum: Highcharts Usage
Topic: How Do i dynamically set yAxis LinkTo: null
Replies: 3
Views: 1169
 
Jump to post

Re: How Do i dynamically set yAxis LinkTo: null

Thank you for the feedback.

That typing is actually wrong and it is just a coincident, that it is working in this case. You have to use numbers without quotes. I replaced the link with the corrected example.

Thank you for pointing this out!

Best regards,
Sophie
by cosy
Tue Jun 05, 2018 8:24 am
Forum: Highcharts Usage
Topic: How Do i dynamically set yAxis LinkTo: null
Replies: 3
Views: 1169
 
Jump to post

Re: How Do i dynamically set yAxis LinkTo: null

Hello! There some issues in your example. You could make use of the chart.yAxis (https://api.highcharts.com/class-reference/Highcharts.Chart#.yAxis) array directly to update options. This will speed things up and avoid ID conflicts like in your case, where "0" is not a unique ID for the Ch...
by cosy
Mon Jun 04, 2018 8:17 am
Forum: Highcharts Usage
Topic: Plugin for Hiding Value Labels in Stacked Column/Bar Charts
Replies: 1
Views: 1184
 
Jump to post

Re: Plugin for Hiding Value Labels in Stacked Column/Bar Cha

Hello! Extensions usually create a namespace on the Highcharts object, so that you could do in you example this: Highcharts.myExtension.hideValueLabels(...); On the other hand, to avoid conflicts during malfunctions and improve performance, we are starting to recommend not to use wraps and namespace...
by cosy
Fri Jun 01, 2018 8:57 am
Forum: Highcharts Usage
Topic: Polar chart with multiple scale ranges
Replies: 9
Views: 4768
 
Jump to post

Re: Polar chart with multiple scale ranges

Hello again, Torstein has implement the necessary changes, to support polar with parallel coordinates. Here is his example: http://jsfiddle.net/highcharts/dxq8hrd5/ This is right now only available in the master source code. So you have to switch to: <script src="https://github.highcharts.com/h...
by cosy
Fri Jun 01, 2018 8:13 am
Forum: Highcharts Usage
Topic: Hide yAxis overflow
Replies: 2
Views: 768
 
Jump to post

Re: Hide yAxis overflow

Hello! You can use a zone with a transparent color to get the unwanted range hidden. Highcharts.chart("container", { "series": [{ "zones": [{ color: "rgba(0,0,0,0)", value: 7 }] }] }); Here is your modified example: https://jsfiddle.net/7mptedqt/1/ Best regard...
by cosy
Fri Jun 01, 2018 7:47 am
Forum: Highcharts Usage
Topic: Polar chart with multiple scale ranges
Replies: 9
Views: 4768
 
Jump to post

Re: Polar chart with multiple scale ranges

Hi Chris, Thank you for the details. In this case, you are already on the right track. Unfortunately there is right now no support for multiple y axes in one series for polar chart. Please consider https://jsfiddle.net/gh/get/library/pure/highcharts/highcharts/tree/master/samples/highcharts/demo/par...
by cosy
Thu May 31, 2018 9:07 am
Forum: Highcharts Usage
Topic: Polar chart with multiple scale ranges
Replies: 9
Views: 4768
 
Jump to post

Re: Polar chart with multiple scale ranges

Hi Chris, I am not sure, how the chart supposed to look like (a drawing would help). I can imagine, that series type "gauge" or "solidgauge" is more useful for you: https://www.highcharts.com/demo#gauges. You can create three panes and yAxis in different angles. This will result ...
by cosy
Wed May 30, 2018 12:58 pm
Forum: Highcharts Usage
Topic: Independent sorting in Stacked Bar
Replies: 7
Views: 3216
 
Jump to post

Re: Independent sorting in Stacked Bar

Hello! You have to sort this yourself. Basically you have to switch to columnrange on initial load and create a new series out of the others. Here is an example: https://jsfiddle.net/3j34qs4x/1/ function resort() { function sort(dataL, dataS) { return (dataS.y < dataL.y ? -1 : dataS.y > dataL.y ? 1 ...
by cosy
Wed May 30, 2018 8:32 am
Forum: Highcharts Usage
Topic: Export Pattern Issue: Can't Export in JPEG, PNG or PDF
Replies: 1
Views: 1565
 
Jump to post

Re: Export Pattern Issue: Can't Export in JPEG, PNG or PDF

Hello! This is a bug on our exporting server and can be worked around by including the offline exporting module: <script src="https://code.highcharts.com/modules/offline-exporting.js"></script> Be aware, that offline exporting is not supported by every web browser: https://www.highcharts.c...
by cosy
Tue May 29, 2018 8:45 am
Forum: Highcharts Usage
Topic: HeatMap a solid colour unless there's no CSS
Replies: 2
Views: 718
 
Jump to post

Re: HeatMap a solid colour unless there's no CSS

Hi Eric, Your chart is not in style mode. You have to switch to the /js/ path like this: <script src="http://code.highcharts.com/js/highcharts.js"></script> <script src="http://code.highcharts.com/js/modules/data.js"></script> <script src="http://code.highcharts.com/js/modul...
by cosy
Thu May 24, 2018 9:20 am
Forum: Highcharts Usage
Topic: Bubbles and xrange chart combined.
Replies: 1
Views: 701
 
Jump to post

Re: Bubbles and xrange chart combined.

Hello! Yes, that is possible. Here is an example how to combine both types: http://jsfiddle.net/47a0wL5h/ It is important to load all required files, because highcharts.js alone is not enough in this case. <script src="http://code.highcharts.com/highcharts.js"></script> <script src="h...

Go to advanced search