Search found 2006 matches

Go to advanced search

by mateusz.b
Mon Jun 06, 2022 12:01 am
Forum: Highcharts Stock
Topic: select/highclight candlestick point
Replies: 7
Views: 1382
 
Jump to post

Re: select/highclight candlestick point

Hi jahnvi25, Most likely it doesn't work because of incorrect path positioning. In this case you should use mouseOver event to draw the path relatively to point position. Demo: https://jsfiddle.net/BlackLabel/t3pzome7/ API reference: https://api.highcharts.com/highcharts/plotOptions.series.point.eve...
by mateusz.b
Fri Jun 03, 2022 1:58 pm
Forum: Highcharts Usage
Topic: Custom column bar with negative values
Replies: 21
Views: 4156
 
Jump to post

Re: Custom column bar with negative values

Hi tyahav, Frankly speaking this questions goes slightly beyond the scope of our support, because the answer depends more on the technologies / architecture that you use in your app. Here are few approaches that you might want to try: - Destroy existing chart each time you change the tab and create ...
by mateusz.b
Fri Jun 03, 2022 1:45 pm
Forum: Highcharts Usage
Topic: Using PM2 with highcharts-export-server does not work
Replies: 7
Views: 1627
 
Jump to post

Re: Using PM2 with highcharts-export-server does not work

flaggalagga,

Thanks for that information. We need to run some more tests of new export server on Windows. I will pass your comments to our export server developer and we will try to provide a solution asap.

Thanks for your patience.
Regards!
by mateusz.b
Thu Jun 02, 2022 4:01 pm
Forum: Highcharts Usage
Topic: Using PM2 with highcharts-export-server does not work
Replies: 7
Views: 1627
 
Jump to post

Re: Using PM2 with highcharts-export-server does not work

flaggalagga, I'm talking about that specific line, there are two redundant dashes just before --enableServer 1 argument :D Your command is: pm2 start highcharts-export-server -- --enableServer 1 --allowCodeExecution true Instead please use: pm2 start highcharts-export-server --enableServer 1 --allow...
by mateusz.b
Thu Jun 02, 2022 2:57 pm
Forum: Highcharts Stock
Topic: select/highclight candlestick point
Replies: 7
Views: 1382
 
Jump to post

Re: select/highclight candlestick point

You're welcome! In case of any further questions, feel free to contact us again.
by mateusz.b
Thu Jun 02, 2022 2:56 pm
Forum: Highcharts Usage
Topic: Using PM2 with highcharts-export-server does not work
Replies: 7
Views: 1627
 
Jump to post

Re: Using PM2 with highcharts-export-server does not work

flaggalagga,

It seems that the command you use includes two redundant dashes (--). Could you try to run this one without those?

Code: Select all

pm2 start highcharts-export-server --enableServer 1 --allowCodeExecution true
Let me know if that helped.
Regards!
by mateusz.b
Thu Jun 02, 2022 1:32 pm
Forum: Highcharts Usage
Topic: Dynamically change selected color in column
Replies: 5
Views: 1426
 
Jump to post

Re: Dynamically change selected color in column

marieas,

Glad to hear that you have figured it out and thanks for the example. In case of any further questions feel free to contact us again!

Regards!
by mateusz.b
Thu Jun 02, 2022 1:13 pm
Forum: Highcharts Stock
Topic: Create a highstock column chart
Replies: 6
Views: 1258
 
Jump to post

Re: Create a highstock column chart

Hi Dukis, It is hard to guess based on the description what is the cause on the issue. First of all I'd suggest you checking console for any errors. I suspect that the problem might be related to unsorted data. If the console will be clear, then I will need you to provide me with a sample of your da...
by mateusz.b
Thu Jun 02, 2022 12:54 pm
Forum: Highcharts Usage
Topic: Chart missized when exiting full screen
Replies: 14
Views: 3761
 
Jump to post

Re: Chart missized when exiting full screen

Hi Keerthi Hangal, Thanks for the demo. In this case you can use recently introduced event; fullscreenClose: https://api.highcharts.com/highcharts/chart.events.fullscreenClose You can get the reference to the chart container and then use scrollIntoView to scroll back to the chart after full screen e...
by mateusz.b
Thu Jun 02, 2022 10:50 am
Forum: Highcharts Usage
Topic: Using PM2 with highcharts-export-server does not work
Replies: 7
Views: 1627
 
Jump to post

Re: Using PM2 with highcharts-export-server does not work

Hi flaggalagga,

Welcome to our forum and thanks for contacting us with your question!

I have forwarded your question to our export server developer. I will be back with an answer asap.

Thanks for your patience.
Regards!
by mateusz.b
Thu Jun 02, 2022 10:48 am
Forum: Highcharts Usage
Topic: Dynamically change selected color in column
Replies: 5
Views: 1426
 
Jump to post

Re: Dynamically change selected color in column

Hi marieas,

Could you try to reproduce that issue in a live demo? You can start here: https://jsfiddle.net/BlackLabel/t3n54w19/

Regards!
by mateusz.b
Thu Jun 02, 2022 10:40 am
Forum: Highcharts Stock
Topic: Create a highstock column chart
Replies: 6
Views: 1258
 
Jump to post

Re: Create a highstock column chart

Dukis,

Could you try to reproduce that issue in a live demo? You can start here: https://jsfiddle.net/BlackLabel/7y2t40fo/
I know that you use ajax but if that is more convenient for you feel free to hardcode that data.

Regards!
by mateusz.b
Thu Jun 02, 2022 9:21 am
Forum: Highcharts Usage
Topic: Issues with `series.marker.enabled: false` and `select` method
Replies: 3
Views: 766
 
Jump to post

Re: Issues with `series.marker.enabled: false` and `select` method

Hi _j_, 1) The behaviour is inconsistent because you have selected the first point in your initial chart config. Please remove selection before applying new one https://jsfiddle.net/BlackLabel/u1cey8s3/ 2) You're right and the case is pretty similar to the previous one, you need to restore normal st...
by mateusz.b
Thu Jun 02, 2022 9:01 am
Forum: Highcharts Stock
Topic: Create a highstock column chart
Replies: 6
Views: 1258
 
Jump to post

Re: Create a highstock column chart

Hi Dukis, Thanks for contacting us with your question. 1) Please try to disable data grouping for column series: https://api.highcharts.com/highstock/plotOptions.column.dataGrouping.enabled 2) Those values are shown in the header of the tooltip. To remove them you should edit headerFormat property: ...
by mateusz.b
Thu Jun 02, 2022 8:41 am
Forum: Highcharts Usage
Topic: Custom column bar with negative values
Replies: 21
Views: 4156
 
Jump to post

Re: Custom column bar with negative values

You're welcome! In case of any further questions, feel free to contact us again.

Go to advanced search