Search found 1192 matches

Go to advanced search

by bastss
Mon Nov 25, 2019 3:20 pm
Forum: Highcharts Usage
Topic: Network Graph: Drill down network graph
Replies: 19
Views: 5876
 
Jump to post

Re: Network Graph: Drill down network graph

Hello indratech,

Actually - why are you using a scatter chart type? If you use the line, this functionality will be added by default and visual output will be the same.

Demo: https://jsfiddle.net/BlackLabel/p1c32r9v/

Kind regards!
by bastss
Thu Nov 21, 2019 11:53 am
Forum: Highcharts Usage
Topic: create links between series
Replies: 12
Views: 2966
 
Jump to post

Re: create links between series

Hello manishg22,

This demo doesn't work in the IE browser, because of using the ES6 features like arrow function. Reproduce it to ES5 and everything will work fine.

Kind regards!
by bastss
Wed Nov 20, 2019 3:29 pm
Forum: Highcharts Usage
Topic: create links between series
Replies: 12
Views: 2966
 
Jump to post

Re: create links between series

Hello manishg22,
Try hiding both the centroids in previous demo of yours , the first series lines re-appear.
I haven't tested it in this way. Thanks. One conditional 'if' fixed the case.

Demo: https://jsfiddle.net/BlackLabel/6gs4aeqh/

Kind regards!
by bastss
Wed Nov 20, 2019 1:06 pm
Forum: Highcharts Usage
Topic: Multi series chart with overlapping categories
Replies: 5
Views: 1939
 
Jump to post

Re: Multi series chart with overlapping categories

Hey again Andy,

How your situation with this issue looks like? Did you make some progress by yourself?

Kind regards!
by bastss
Tue Nov 19, 2019 10:05 am
Forum: Highcharts Usage
Topic: create links between series
Replies: 12
Views: 2966
 
Jump to post

Re: create links between series

Hello manishg22, It is working fine for one set of clusters, but fail for multiple clusters. My requirement can go up to 5 clusters. Please help ! I found a better way to achieve it for multiple clusters - attach those custom lines to the series object. Demo: https://jsfiddle.net/BlackLabel/thxrzc7u...
by bastss
Mon Nov 18, 2019 1:16 pm
Forum: Highcharts Usage
Topic: create links between series
Replies: 12
Views: 2966
 
Jump to post

Re: create links between series

Hello manishg22, One more clarification, when i click the particular legend the path is not getting disappeared. To hide this line also we need to customize legend event. Like here: events: { legendItemClick(e) { let chart = this.chart; e.preventDefault(); if (this.visible) { this.hide() } else { th...
by bastss
Fri Nov 15, 2019 11:37 am
Forum: Highcharts Stock
Topic: Refering highstock.js in requirejs throws error: Cannot read property 'stockChart' of undefined
Replies: 4
Views: 1837
 
Jump to post

Re: Refering highstock.js in requirejs throws error: Cannot read property 'stockChart' of undefined

Hello sina123,

Yeah, you are right, it should work as you expected. Could you join this conversation? Core developers should help you to find a solution to this case.

https://github.com/highcharts/highcharts/issues/8890

Kind regards!
by bastss
Fri Nov 15, 2019 11:07 am
Forum: Highcharts Usage
Topic: create links between series
Replies: 12
Views: 2966
 
Jump to post

Re: create links between series

Hello manishg22, Ah... I see! Sorry for the misunderstanding and thanks for the explanation and the demo. I prepared a demo which will show you how to create these connectors between point and centre point via using SVGRenderer feature. Demo: https://jsfiddle.net/BlackLabel/yt4qdsgj/1/ API: https://...
by bastss
Fri Nov 15, 2019 10:40 am
Forum: Highcharts Stock
Topic: Chart user options - save/restore
Replies: 15
Views: 4583
 
Jump to post

Re: Chart user options - save/restore

Hey HunterX,

I am glad that you are satisfied! In case of any future troubles - we are willing to help!

Kind regards!
by bastss
Thu Nov 14, 2019 4:10 pm
Forum: Highcharts Usage
Topic: 3d scatter plot z axis
Replies: 39
Views: 6902
 
Jump to post

Re: 3d scatter plot z axis

Hey anson, So , passing of all axes values ie (x,y,z) can only be given in series attribute ,right? Yes, as I shown before: [{x: 1,y: 3, z: 5}, {x: 2, y: 4, z: 9}] And here is a demo with using JSON and includes only requires attributes to render a scatter3d. Demo: https://jsfiddle.net/BlackLabel/bh...
by bastss
Thu Nov 14, 2019 2:58 pm
Forum: Highcharts Usage
Topic: Real Time Column or Pie Chart with Ajax PHP Mysql
Replies: 1
Views: 4823
 
Jump to post

Re: Real Time Column or Pie Chart with Ajax PHP Mysql

Hello rohilario_, Thank you for contacting us! I think that the main impact for your code is that you have used setTimeout functionality which triggers function only once rather than setInterval . I think that you work with this example: https://stackoverflow.com/questions/57882815/plot-graph-points...
by bastss
Thu Nov 14, 2019 1:46 pm
Forum: Highcharts Stock
Topic: Refering highstock.js in requirejs throws error: Cannot read property 'stockChart' of undefined
Replies: 4
Views: 1837
 
Jump to post

Re: Refering highstock.js in requirejs throws error: Cannot read property 'stockChart' of undefined

Hello sina123, Have you tried to attach the link to the Highstock core into the array inside require how it is done in the above demo? And later, your function should take only Highcharts as an argument, not Highcharts and highstock. Simplified demo: https://jsfiddle.net/BlackLabel/ygmdq68n/ KInd re...
by bastss
Thu Nov 14, 2019 1:32 pm
Forum: Highcharts Usage
Topic: create links between series
Replies: 12
Views: 2966
 
Jump to post

Re: create links between series

Hello manishg22, Thank you for contacting us. Correct me if I wrongly understood you, but as I understood you want to create something like a Marker Cluster. This functionality will be available in Highcharts after the new release. Here is a GitHub ticket which you can follow: https://github.com/hig...
by bastss
Thu Nov 14, 2019 1:24 pm
Forum: Highcharts Stock
Topic: Custom GUI and popups
Replies: 1
Views: 1417
 
Jump to post

Re: Custom GUI and popups

Hello memario, Welcome to official Highcharts forum! Thank you for contacting us! As I understood - you would like to create own, custom GUI and now you are struggling with the annotations popup. Let's consider this example: https://jsfiddle.net/BlackLabel/qcyfms5d/, with the basic annotations and t...
by bastss
Thu Nov 14, 2019 12:48 pm
Forum: Highcharts Stock
Topic: Chart user options - save/restore
Replies: 15
Views: 4583
 
Jump to post

Re: Chart user options - save/restore

Hello HunterX, Yes, you are right! I tested it wrong, my mistake. So thank you for your demo, what can I say it works perfectly! However, I think I found an easier way to achieve the same functionality. Please test it and let me know what do you think: https://jsfiddle.net/BlackLabel/wL3hmr67/ Kind ...

Go to advanced search