Search found 1222 matches

Go to advanced search

by mateuszkornecki
Thu Sep 17, 2020 8:46 am
Forum: Highcharts Usage
Topic: Chart inside ng-bootstrap modal menu is always cut off
Replies: 5
Views: 1920
 
Jump to post

Re: Chart inside ng-bootstrap modal menu is always cut off

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

Best regards.
by mateuszkornecki
Tue Sep 15, 2020 6:59 am
Forum: Highcharts Usage
Topic: Chart inside ng-bootstrap modal menu is always cut off
Replies: 5
Views: 1920
 
Jump to post

Re: Chart inside ng-bootstrap modal menu is always cut off

Without setTimeout() the reflow() method was called too early, so we were not able to see the results. Invoking the setTimeout() with the 0 as a second argument will postpone the callback to run asynchronously with the shortest possible delay but enough for us to reflow the chart correctly. You can ...
by mateuszkornecki
Tue Sep 15, 2020 6:53 am
Forum: Highcharts Usage
Topic: Tooltip Onload of Screen
Replies: 3
Views: 1725
 
Jump to post

Re: Tooltip Onload of Screen

To make it work you need to enable the tooltip first (it is disabled now), and then set tooltip.shared to false - otherwise, it will throw an error because you are working with just one series. Then you could just use the chart's load event to call the refresh() method. load() { const chart = this; ...
by mateuszkornecki
Mon Sep 14, 2020 1:32 pm
Forum: Highcharts Usage
Topic: LinearGradient Fill URL Causes Bar to Dissapear from Chart on URL Change
Replies: 7
Views: 1792
 
Jump to post

Re: LinearGradient Fill URL Causes Bar to Dissapear from Chart on URL Change

Hello, Could you provide us access to the code that is showing the problem? In this case, it might be hard to find a proper solution without having access to the issue. If it is not possible to reproduce the issue in the online editor it could be even a GitHub repository that we could download and d...
by mateuszkornecki
Mon Sep 14, 2020 11:14 am
Forum: Highcharts Usage
Topic: EXPORT multi Chart with same class
Replies: 1
Views: 574
 
Jump to post

Re: EXPORT multi Chart with same class

Hello, Thanks for contacting us with your question! I am not sure if I understood you correctly, classes are used just for styling and they have nothing to do with exporting. Moreover, both charts from the example that you are referring to have the same class, and everything is working correctly. Co...
by mateuszkornecki
Mon Sep 14, 2020 9:46 am
Forum: Highcharts Stock
Topic: Draw annotations rectangle with click event
Replies: 5
Views: 1052
 
Jump to post

Re: Draw annotations rectangle with click event

Hello, Dominik is currently not available so I will do my best to help you! As far as I understand you were looking for a way to delete the dropdown functionality (display just the rectangle button, and nothing else). Since the current navigation is built with the CSS classes all you have to do is s...
by mateuszkornecki
Mon Sep 14, 2020 9:31 am
Forum: Highcharts Usage
Topic: Data grouping of windbarbs
Replies: 3
Views: 935
 
Jump to post

Re: Data grouping of windbarbs

Hi,

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

It seems to be working, take a closer look at the wind bars arrows behavior after the chart's resizing.

Let me know if you have any further questions!

Best regards.
by mateuszkornecki
Mon Sep 14, 2020 8:26 am
Forum: Highcharts Usage
Topic: Chart inside ng-bootstrap modal menu is always cut off
Replies: 5
Views: 1920
 
Jump to post

Re: Chart inside ng-bootstrap modal menu is always cut off

Hello, Welcome to our forum and thanks for contacting us with your question! It is probably caused by the styles of the bootstrap modal, to fix the problem you could call the chart.reflow after the chart is loaded. The problem has been already solved on this GitHub issue page: https://github.com/hig...
by mateuszkornecki
Mon Sep 14, 2020 8:20 am
Forum: Highcharts Usage
Topic: Tooltip Onload of Screen
Replies: 3
Views: 1725
 
Jump to post

Re: Tooltip Onload of Screen

Hello, Thanks for reaching out to us with your question! To achieve that you could use the tooltip.refresh() method, it will allow you to programmatically set the position of the tooltip. If you want to be sure that the method will be called on the load event, you could call it inside the chart's lo...
by mateuszkornecki
Mon Sep 14, 2020 7:59 am
Forum: Highcharts Stock
Topic: Context Menu options are not vertical
Replies: 1
Views: 757
 
Jump to post

Re: Context Menu options are not vertical

Hello, Welcome to our forum and thanks for contacting us with your question! Could you reproduce the issue in an online editor that I could work on? It is hard to tell you what is not working and what could be done without taking look at your code. You can start from this template: https://jsfiddle....
by mateuszkornecki
Mon Sep 14, 2020 7:54 am
Forum: Highcharts Usage
Topic: Make "Pie with legend" like this design
Replies: 3
Views: 859
 
Jump to post

Re: Make "Pie with legend" like this design

After setting the legend.floating to true, you will be able to position the legend using the x and y property.

API references:
https://api.highcharts.com/highcharts/legend.floating

Live demo:

https://jsfiddle.net/BlackLabel/2j7pm58y/

Best regards.
by mateuszkornecki
Mon Sep 14, 2020 7:49 am
Forum: Highcharts Stock
Topic: Highstock - incorrect "from" date on range selector when the "to" date is the end of a month
Replies: 3
Views: 988
 
Jump to post

Re: Highstock - incorrect "from" date on range selector when the "to" date is the end of a month

Hi,

For now, I can't see any workarounds. If any workaround or fix will be done you will find it on the issue page.

Best regards.
by mateuszkornecki
Fri Sep 11, 2020 10:20 am
Forum: Highcharts Usage
Topic: Change the background color, if it contains a specific word
Replies: 2
Views: 657
 
Jump to post

Re: Change the background color, if it contains a specific word

Hi! Thanks for reaching out to us with your question! In order to achieve such an effect, you could use the chart's load event to check if the specified element contains the word 'American' and then use the update() method to dynamically change the chart's color. Take a look at a simple demo I prepa...
by mateuszkornecki
Fri Sep 11, 2020 10:13 am
Forum: Highcharts Usage
Topic: Make "Pie with legend" like this design
Replies: 3
Views: 859
 
Jump to post

Re: Make "Pie with legend" like this design

Hello, Thanks for contacting us with your question! In order to enable legend for the pie series, all you need to do is to set the series.showInLegend property to true. API references: https://api.highcharts.com/highcharts/plotOptions.series.showInLegend Live demo: https://jsfiddle.net/BlackLabel/ac...
by mateuszkornecki
Wed Sep 09, 2020 6:12 am
Forum: Highcharts Usage
Topic: Rotate whole chart?
Replies: 10
Views: 4850
 
Jump to post

Re: Rotate whole chart?

Hello, Welcome to our forum and thanks for contacting us with your question! Unfortunately, this feature is still not implemented. I can see that you have sent a similar question on our support mail. For the future please do not replicate the same inquiries on multiple support channels to prevent a ...

Go to advanced search