Search found 16 matches

Go to advanced search

by mabodokh
Wed Dec 19, 2018 2:34 pm
Forum: Highcharts Usage
Topic: Strange tooltip bug on version 7
Replies: 11
Views: 662
 
Jump to post

Re: Strange tooltip bug on version 7

Hello mabodokh, Yes, I just deleted the post because I think I figured out what is going out :D Hm, I think that the callback function overwriting minWidth condition in this case and function is fired every time when the window size is changing. Check this example http://jsfiddle.net/Bastss/dvzyLc1...
by mabodokh
Wed Dec 19, 2018 2:12 pm
Forum: Highcharts Usage
Topic: Strange tooltip bug on version 7
Replies: 11
Views: 662
 
Jump to post

Re: Strange tooltip bug on version 7

Hey bastss,
Though you deleted your post, I have already created the fiddle.
http://jsfiddle.net/xbqfy9m5/

Play with the window/chart width and see how the console logs respond and you'll notice the issue.
Do you have any open QA positions ;)
by mabodokh
Tue Dec 18, 2018 3:55 pm
Forum: Highcharts Usage
Topic: Strange tooltip bug on version 7
Replies: 11
Views: 662
 
Jump to post

Re: Strange tooltip bug on version 7

mabodokh, Thanks for contacting us with it. I have simplified and reported this as a bug on our GitHub issues channel. You can follow and continue this thread there: https://github.com/highcharts/highcharts/issues/9694 . Best regards! By the way if you want to continue you're roll of issue reportin...
by mabodokh
Tue Dec 18, 2018 3:36 pm
Forum: Highcharts Usage
Topic: Strange tooltip bug on version 7
Replies: 11
Views: 662
 
Jump to post

Re: Strange tooltip bug on version 7

Alright I'm subscribed to the issue and am awaiting a fix in the near future.
Thanks!
by mabodokh
Mon Dec 17, 2018 1:18 pm
Forum: Highcharts Usage
Topic: Strange tooltip bug on version 7
Replies: 11
Views: 662
 
Jump to post

Re: Strange tooltip bug on version 7

Since for some reason I can't edit again,
It seems the SVG tooltip container with the class highcharts-root has a wrong viewbox cutting off part of the tooltip, I don't know why but that seems to be the issue.
by mabodokh
Mon Dec 17, 2018 1:06 pm
Forum: Highcharts Usage
Topic: Strange tooltip bug on version 7
Replies: 11
Views: 662
 
Jump to post

Re: Strange tooltip bug on version 7

Hey mabodokh, Could you send a sample demo with this issue to look at it? Best regards! Additionally, another problem popped up which was not present before. When enlarging the chart I rerender the chart on a lightbox. This works fine and had no issues, but after upgrading to version 7 tooltips are...
by mabodokh
Mon Dec 17, 2018 12:54 pm
Forum: Highcharts Usage
Topic: Strange tooltip bug on version 7
Replies: 11
Views: 662
 
Jump to post

Re: Strange tooltip bug on version 7

bastss wrote: Mon Dec 17, 2018 11:52 am Hey mabodokh,

Could you send a sample demo with this issue to look at it?

Best regards!
https://codepen.io/Bodokh/pen/yRrbmd

You should be able to see it as i do, play with the tooltips a little and refresh a few times if you can't see it, eventually it shows up.
by mabodokh
Mon Dec 17, 2018 11:24 am
Forum: Highcharts Usage
Topic: Strange tooltip bug on version 7
Replies: 11
Views: 662
 
Jump to post

Strange tooltip bug on version 7

Hi, We recently purchased version 7 of Highcharts and since upgrading this seems to happen a lot: chrt.PNG The tooltip get's cut off at the right and bottom edges. Sometimes it occurs and sometimes it doesn't on many types of charts. Is this a know issue? *This did not happen when using version 4.
by mabodokh
Mon Dec 03, 2018 2:23 pm
Forum: Highcharts Usage
Topic: Tooltip arrow direction/location
Replies: 3
Views: 2580
 
Jump to post

Re: Tooltip arrow direction/location

rafalS wrote: Mon Dec 03, 2018 12:30 pm Hi, mabodokh!

Could you send me a simplified demo of your chart? jsFiddle would be the best.

Best regards!
Hi rafals, good to see you again :)
Your help is always appreciated.

Here you go,
https://jsfiddle.net/scghnrvz/
by mabodokh
Sun Dec 02, 2018 9:33 am
Forum: Highcharts Usage
Topic: Tooltip arrow direction/location
Replies: 3
Views: 2580
 
Jump to post

Tooltip arrow direction/location

Hi, I've been scouring the web for a while now to find a way to make the tooltip arrow come from below and not from above as it is right now. Is this even possible? In the image below the tooltip arrow is from above, I would like it upside down. How would I go around doing this? And also, I'm using ...
by mabodokh
Wed Nov 14, 2018 12:16 pm
Forum: Highcharts Usage
Topic: Limit bar height relative to chart
Replies: 2
Views: 652
 
Jump to post

Re: Limit bar height relative to chart

rafalS wrote:Hi, mabodokh!

You are probably looking for a yAxis.maxPadding property: https://api.highcharts.com/highcharts/yAxis.maxPadding

Best regards!
Thanks again rafalS for your help it is much appreciated!
by mabodokh
Wed Nov 14, 2018 9:23 am
Forum: Highcharts Usage
Topic: Limit bar height relative to chart
Replies: 2
Views: 652
 
Jump to post

Limit bar height relative to chart

My chart has datalabels that overflow from the top when the difference in data is significant as in the attached image.

Will padding the top somehow help? or perhaps there is a way to limit the bar height relative to the data provided? say have it 80% max height or something like that?
by mabodokh
Mon Nov 05, 2018 4:55 pm
Forum: Highcharts Usage
Topic: Tooltip opacity when using html with version 4
Replies: 7
Views: 6459
 
Jump to post

Re: Tooltip opacity when using html with version 4

Thank you ;) Well, exporting with options you have provided (fontSize) works fine for me: chart (14).png Could it be that it does not work because I am exporting it as PDF? Here is how my export looks since it's external: var eChart = $("#" + chartID).highcharts(); eChart.exportChart({ ty...
by mabodokh
Mon Nov 05, 2018 3:54 pm
Forum: Highcharts Usage
Topic: Tooltip opacity when using html with version 4
Replies: 7
Views: 6459
 
Jump to post

Re: Tooltip opacity when using html with version 4

mabodokh, What if we hide dataLabels when hovering over a point? point: { events: { mouseOver() { this.dataLabel.hide() }, mouseOut() { this.dataLabel.show() } } } jsFiddle: https://jsfiddle.net/BlackLabel/4zry69ud/ Let me know if it's enough for you. If not, I will try to find the other solution. ...
by mabodokh
Sun Nov 04, 2018 8:28 am
Forum: Highcharts Usage
Topic: Tooltip opacity when using html with version 4
Replies: 7
Views: 6459
 
Jump to post

Re: Tooltip opacity when using html with version 4

Hi, mabodokh! I would appreciate if you still create a simplified online demo for me. You don't have to copy the whole of your project code, but it's enough to add some dataLabels and tooltip that show your issue. You can rely on this jsFiddle: https://jsfiddle.net/zv8dqje5/ Or at least, please exp...

Go to advanced search