Search found 475 matches

Go to advanced search

by andrzej.b
Mon Jan 13, 2025 3:44 pm
Forum: Highcharts Usage
Topic: Help with Line Step Behavior and Column Alignment in Highcharts
Replies: 5
Views: 65
 
Jump to post

Re: Help with Line Step Behavior and Column Alignment in Highcharts

You're welcome! In case of any further questions, feel free to contact us again.
by andrzej.b
Mon Jan 13, 2025 3:44 pm
Forum: Highcharts Usage
Topic: multi series y axis label problem
Replies: 1
Views: 17
 
Jump to post

Re: multi series y axis label problem

Hi,

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

You've shared the working app, not your config - could you reproduce the issue in an online editor that I could work on?

Kind regards,
by andrzej.b
Mon Jan 13, 2025 2:40 pm
Forum: Highcharts Stock
Topic: Next Js HighStock
Replies: 5
Views: 164
 
Jump to post

Re: Next Js HighStock

Hi,

I believe you should find a solution in this thread: https://github.com/highcharts/highchart ... issues/502 if not, please add your comments there to get the support from the dedicated team.

Kin regards,
by andrzej.b
Mon Jan 13, 2025 10:57 am
Forum: Highcharts Maps
Topic: Dragging annotations not in new position on export
Replies: 4
Views: 75
 
Jump to post

Re: Dragging annotations not in new position on export

Hi, Thanks for reaching out with your question. It sounds like you're encountering an issue where the annotations don't maintain their new positions after being dragged when exporting the map. The key here is to ensure that the annotations' positions are updated in the chart's configuration before y...
by andrzej.b
Mon Jan 13, 2025 8:35 am
Forum: Highcharts Stock
Topic: Angular 19. Error: IndicatorsCore is not a function.
Replies: 2
Views: 39
 
Jump to post

Re: Angular 19. Error: IndicatorsCore is not a function.

Hi,

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

You just need to adjust the imports. You can find more info in the changelog, under “Upgrade notes”: https://www.highcharts.com/blog/changel ... ts-v12.0.0

Do not hesitate to contact us in the future.

Kind regards,
by andrzej.b
Mon Jan 13, 2025 8:33 am
Forum: Highcharts Stock
Topic: Range Selector button dropdown
Replies: 1
Views: 17
 
Jump to post

Re: Range Selector button dropdown

Hi

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

In the example you share, button 'never' works well both on v11.4.4 as in the latest, can you reproduce the issue so that we could investigate and support help you further?

Kind regards,
by andrzej.b
Fri Jan 10, 2025 8:24 pm
Forum: Highcharts Stock
Topic: Next Js HighStock
Replies: 5
Views: 164
 
Jump to post

Re: Next Js HighStock

Hi, The demo you shared is not working. As for the if (typeof Highcharts === 'object') check, it's not necessary with the new import style in v12. This check was typically used in environments where you needed to ensure that Highcharts was loaded before using it, but with ES module imports, this is ...
by andrzej.b
Fri Jan 10, 2025 7:42 pm
Forum: Highcharts Usage
Topic: zip download for latest version
Replies: 3
Views: 84
 
Jump to post

Re: zip download for latest version

Hi,

Your issue seems related to this ticket: https://github.com/highcharts/highcharts/issues/22450
It's going to have a fix with the upcoming release.

Kind regards,
by andrzej.b
Fri Jan 10, 2025 7:40 pm
Forum: Highcharts Usage
Topic: Help with Line Step Behavior and Column Alignment in Highcharts
Replies: 5
Views: 65
 
Jump to post

Re: Help with Line Step Behavior and Column Alignment in Highcharts

Hi @MayankOfficial, I'm afraid we don't have such a feature easily available. If you think such a feature would be useful for more users, you can request it here: https://github.com/highcharts/highcharts/issues/new/choose You can expect possible updates or workarounds there. However, if you need a c...
by andrzej.b
Fri Jan 10, 2025 7:35 pm
Forum: Highcharts Maps
Topic: Discrete quantized legend for maps
Replies: 5
Views: 124
 
Jump to post

Re: Discrete quantized legend for maps

Hi Blaine, Thanks for the update. If you think such a feature would be useful for more users, you can request it here: https://github.com/highcharts/highcharts/issues/new/choose You can expect possible updates or workarounds there. However, if you need a customized solution for yourself without wait...
by andrzej.b
Fri Jan 10, 2025 4:05 pm
Forum: Highcharts Stock
Topic: YTD displays dates from the previous year
Replies: 3
Views: 60
 
Jump to post

Re: YTD displays dates from the previous year

So glad to have been able to help – if you have any follow up questions, please let us know.
by andrzej.b
Fri Jan 10, 2025 4:05 pm
Forum: Highcharts Usage
Topic: Highcharts export image with custom images(png/jpeg) on xaxis
Replies: 19
Views: 2001
 
Jump to post

Re: Highcharts export image with custom images(png/jpeg) on xaxis

Can you reproduce the issue fully, in codesandbox or stackblitz, so that I could see the labels actually rendered? And how they behave while exporting?
by andrzej.b
Fri Jan 10, 2025 2:31 pm
Forum: Highcharts Usage
Topic: Highcharts export image with custom images(png/jpeg) on xaxis
Replies: 19
Views: 2001
 
Jump to post

Re: Highcharts export image with custom images(png/jpeg) on xaxis

Something like this? if (useLogo) { if (type === 'bar') { return `<span><img src="${data[index].logo}" alt="${name}" style="width: 30px; height: 30px;" /></span>`; } else { return `<span><img src="${data[index].logo}" alt="${name}" style="width:...
by andrzej.b
Fri Jan 10, 2025 2:28 pm
Forum: Highcharts Usage
Topic: Help with Line Step Behavior and Column Alignment in Highcharts
Replies: 5
Views: 65
 
Jump to post

Re: Help with Line Step Behavior and Column Alignment in Highcharts

Hi, With column setting it's easy, you just need to apply proper centerInCategory, pointPadding and borderWidth. With the line series, it's tricky. With the current setting, you might prefer the left step: https://api.highcharts.com/highcharts/series.line.step Demo: https://jsfiddle.net/BlackLabel/5...
by andrzej.b
Fri Jan 10, 2025 1:30 pm
Forum: Highcharts Usage
Topic: Highcharts export image with custom images(png/jpeg) on xaxis
Replies: 19
Views: 2001
 
Jump to post

Re: Highcharts export image with custom images(png/jpeg) on xaxis

Ok, thanks, I've noted that you use just <img/> for your graphics, for the export to work correctly, have you tried wrapping them in the <span></span> as on my example? It helps with HTML interpretation during the export.

Go to advanced search