Search found 1128 matches

Go to advanced search

by michal.f
Tue Dec 03, 2024 11:29 am
Forum: Highcharts Usage
Topic: Tooltips & selected series on precise hover
Replies: 4
Views: 215
 
Jump to post

Re: Tooltips & selected series on precise hover

Hi! Unfortunately, but your requirements are very unusual. With the help of API you are not able to achieve such tooltip functionality. You can try to overwrite the current code responsible for the tooltip's operation: https://www.highcharts.com/docs/extending-highcharts/extending-highcharts, but th...
by michal.f
Fri Nov 29, 2024 4:17 pm
Forum: Highcharts Usage
Topic: Column Stacking 'normal', only round top corners
Replies: 6
Views: 3292
 
Jump to post

Re: Column Stacking 'normal', only round top corners

Hello! So what version exactly are you using of @AvishkarDixit? Because native support for rounded stacked series was added in version 11.0.0. https://jsfiddle.net/BlackLabel/etfcm7d1/ - here is an example of usage based on your code, slightly simplified due to the fact that I don't know exactly how...
by michal.f
Fri Nov 29, 2024 12:00 pm
Forum: Highcharts Usage
Topic: Chart height does not adhere to container
Replies: 9
Views: 5262
 
Jump to post

Re: Chart height does not adhere to container

Hello!

To make the height of the chart adjust to the parent/supervisory component, just set the height for it in styles (not in config) to 100% and set the display to block: https://stackblitz.com/edit/highcharts- ... onent.html

Best regards!
by michal.f
Fri Nov 29, 2024 11:42 am
Forum: Highcharts Usage
Topic: Tooltips & selected series on precise hover
Replies: 4
Views: 215
 
Jump to post

Re: Tooltips & selected series on precise hover

Hello and welcome on our fourm! You can customize stickyTracking to work only for a specific one of the series by setting it directly in the series settings. Demo: https://jsfiddle.net/BlackLabel/xa35stbn/ API: https://api.highcharts.com/highcharts/series.line.stickyTracking Let me know if this is e...
by michal.f
Thu Nov 21, 2024 9:33 am
Forum: Highcharts Usage
Topic: how to show tooltip more precisely on hover
Replies: 2
Views: 188
 
Jump to post

Re: how to show tooltip more precisely on hover

Hello and welcome to our forum! The findNearestPointBy property may be what you are looking for: https://api.highcharts.com/highcharts/series.line.findNearestPointBy Demo : https://jsfiddle.net/gh/get/library/pure/highcharts/highcharts/tree/master/samples/highcharts/series/findnearestpointby/ Best r...
by michal.f
Wed Nov 20, 2024 12:52 pm
Forum: Highcharts Usage
Topic: Using chart.update() for datalabels crashes the chart
Replies: 2
Views: 314
 
Jump to post

Re: Using chart.update() for datalabels crashes the chart

Hello! In React Integration the recommended way to update chart config is to update chartOptions state ( useState ): https://stackblitz.com/edit/react-k8idgy?file=index.js In your case where you are using useMemo you can do it even simpler. Specifically include the dataLabelsText props right away in...
by michal.f
Wed Nov 20, 2024 12:32 pm
Forum: Highcharts Maps
Topic: location clusters are not tallying correctly on map
Replies: 1
Views: 319
 
Jump to post

Re: location clusters are not tallying correctly on map

Hello and welcome on our forum! Since it's hard to say if the problem is on the config side or if it's a bug, it's best if you reproduce the problem in an online demo. You can build on this example: https://www.highcharts.com/demo/maps/marker-clusters All it needs is a simplified config with example...
by michal.f
Wed Nov 20, 2024 9:54 am
Forum: Highcharts Usage
Topic: Themes dropdown is not working
Replies: 3
Views: 380
 
Jump to post

Re: Themes dropdown is not working

Hi

Are you sure you are selecting the frame first?
figma-themes-select.png
figma-themes-select.png (63.58 KiB) Viewed 260 times
by michal.f
Mon Nov 18, 2024 9:15 am
Forum: Highcharts Stock
Topic: Stocktools GUI Custom Titles
Replies: 1
Views: 378
 
Jump to post

Re: Stocktools GUI Custom Titles

Hello! This can be changed, but not with the config. You have to use a wrapper to override the nameBase of this indicator. Demo : https://codesandbox.io/p/sandbox/highcharts-react-demo-forked-ggnw5l?file=%2Fdemo.jsx%3A25%2C16 Docs : https://www.highcharts.com/docs/extending-highcharts/extending-high...
by michal.f
Thu Nov 14, 2024 5:26 pm
Forum: Highcharts Gantt
Topic: Scroll bar in Gantt chart
Replies: 1
Views: 601
 
Jump to post

Re: Scroll bar in Gantt chart

Hello!

Have you tried using xAxis.scrollbar?

Demo: https://jsfiddle.net/BlackLabel/p7c8r5bj/
API: https://api.highcharts.com/highstock/xAxis.scrollbar

Let me know if that is what you were looking for!
by michal.f
Thu Nov 14, 2024 10:43 am
Forum: Highcharts Usage
Topic: Tooltip ZIndex
Replies: 3
Views: 538
 
Jump to post

Re: Tooltip ZIndex

Hello! Are you trying to display the chart in an iframe? In what other case is the height low enough that a scroll appears? I'm trying to understand the reason why this is important because in the case where most of the chart is already behind the viewport after scrolling lower and you can't see the...
by michal.f
Thu Nov 14, 2024 10:26 am
Forum: Highcharts Usage
Topic: Themes dropdown is not working
Replies: 3
Views: 380
 
Jump to post

Re: Themes dropdown is not working

Hello and welcome to our forum! Don't they appear or are you having trouble expanding this select? Try selecting a frame first and then try opening the Theme tab, then the select should be active. It is also possible that after duplicating a theme, you need to restart the plugin to load the new one ...
by michal.f
Mon Oct 14, 2024 2:42 pm
Forum: Highcharts Dashboards
Topic: Dashboard with React
Replies: 1
Views: 742
 
Jump to post

Re: Dashboard with React

Hello! Can you reproduce this demo in an online editor or send the code? As an example, I am sending how to properly use dashboards in a React project: https://stackblitz.com/edit/stackblitz-starters-rp3dcp?file=src%2FDashboard.tsx Since React is usually used with frameworks like NextJS, here are so...
by michal.f
Mon Oct 14, 2024 2:31 pm
Forum: Highcharts Gantt
Topic: Gantt with text-frames under years
Replies: 3
Views: 1111
 
Jump to post

Re: Gantt with text-frames under years

Hello! You can adjust xAxis labels amout using xAxis.units property and add custom xAxis.label.formatter to achieve something this. Demo: https://jsfiddle.net/BlackLabel/7yt5kgfh/ API : https://api.highcharts.com/gantt/xAxis.units https://api.highcharts.com/gantt/xAxis.labels.formatter Best regards!
by michal.f
Tue Mar 12, 2024 10:41 am
Forum: Highcharts Usage
Topic: Highchart Pie Chart Tooltip position issue
Replies: 7
Views: 1872
 
Jump to post

Re: Highchart Pie Chart Tooltip position issue

Hello! Can i get the cursor current position inside positioner method Yes, you can get this information in this method, the API says exactly how to do it: The callback receives three parameters: labelWidth , labelHeight and point , where point contains values for plotX and plotY telling where the re...

Go to advanced search