Search found 433 matches

Go to advanced search

by wojtek
Mon Jul 27, 2020 11:42 am
Forum: Highcharts Usage
Topic: Highcharts Vue Wrapper
Replies: 6
Views: 1219
 
Jump to post

Re: Highcharts Vue Wrapper

To work around this what we ended up doing was checking if the navigation drawer (side-nav) has loaded yet or not using vue's activity lifecycles mounted specifically and if it has loaded then we render the chart. It seems it is the current workaround we have, see: https://github.com/highcharts/hig...
by wojtek
Mon Jul 27, 2020 9:43 am
Forum: Highcharts Stock
Topic: Dynamic chart for vue
Replies: 3
Views: 2232
 
Jump to post

Re: Dynamic chart for vue

For many points and rendering the chart many times, it will be better to create a couple of components with separate data. In your case three components with temp, pressure, and weight. and also is there a way to display chart after opening modal, without having to press a button on the chart? Yes, ...
by wojtek
Mon Jan 20, 2020 3:40 pm
Forum: Highcharts Stock
Topic: How to get values from all the charts in the tooltip you are currently hovering
Replies: 4
Views: 5216
 
Jump to post

Re: How to get values from all the charts in the tooltip you are currently hovering

Hi spiros, You said what doesn't work for you, yet still, I don't understand exactly what you're trying to achieve. Perhaps it will be easier to just add another axis and show multiple series in one chart? In this case, you can use a shared tooltip out of the box. Check the demo posted below and let...
by wojtek
Thu Jan 16, 2020 12:45 pm
Forum: Highcharts Stock
Topic: How to get values from all the charts in the tooltip you are currently hovering
Replies: 4
Views: 5216
 
Jump to post

Re: How to get values from all the charts in the tooltip you are currently hovering

Hi spiros,

Thank you for using Highcharts.

Could you try to reproduce this issue in an online code editor like codesandbox? You can use this demo as a template: https://codesandbox.io/s/4p8xw74y9. It will be easier to work on your specific use case.

Kind regards,
Wojciech Chmiel
by wojtek
Mon Aug 19, 2019 1:51 pm
Forum: Highcharts Maps
Topic: Mappie with Vue wrapper
Replies: 11
Views: 4679
 
Jump to post

Re: Mappie with Vue wrapper

Hi, The way pies sizes are computed in the official demo depends on the dataset. So in case of the different dataset, you should change it for sure. In the mounted hook you can see a method sizeFormatter - there you can control pies sizes. I have changed it a bit and now it looks better: https://cod...
by wojtek
Fri Aug 16, 2019 5:42 am
Forum: Highcharts Maps
Topic: Mappie with Vue wrapper
Replies: 11
Views: 4679
 
Jump to post

Re: Mappie with Vue wrapper

Hi,

I've no idea what can be the problem. Could you just debug it? Use debugger when you click the tab which froze the browser and try to find the piece of code that causes it. If it works in codesandbox it should also work locally.

Regards.
by wojtek
Tue Aug 13, 2019 10:33 am
Forum: Highcharts Maps
Topic: Mappie with Vue wrapper
Replies: 11
Views: 4679
 
Jump to post

Re: Mappie with Vue wrapper

Oh sorry, I send you the wrong demo above. Check this one (pies working correctly): https://codesandbox.io/s/vue-template-fyuqe. Note, that I've also changed mappie.js implementation to work with the zoom. I hope it will resolve the issue now.

Kind regards.
by wojtek
Mon Aug 12, 2019 1:07 pm
Forum: Highcharts Maps
Topic: Mappie with Vue wrapper
Replies: 11
Views: 4679
 
Jump to post

Re: Mappie with Vue wrapper

Thank you for the demo. I've initialized mappie series in the main.js (not in the mounted hook in the chart component), added keys and joinBy properties. It seems everything works fine now. Demo: https://codesandbox.io/s/vue-template-qssyt. You can disable strange elements in the legend by adding sh...
by wojtek
Fri Aug 09, 2019 2:02 pm
Forum: Highcharts Maps
Topic: Mappie with Vue wrapper
Replies: 11
Views: 4679
 
Jump to post

Re: Mappie with Vue wrapper

Hi,

Thank you for contacting us! Could you reproduce your app in an online code editor like codesandbox or send us a package with a simplified app and instructions on how to run it?

Best regards.
by wojtek
Wed Jun 05, 2019 7:18 am
Forum: Highcharts Usage
Topic: Solid Gauge with marker or indicator
Replies: 21
Views: 9614
 
Jump to post

Re: Solid Gauge with marker or indicator

Hi europeyoung,

Sorry for that, check this one: https://codesandbox.io/s/angular-w5u4b.

Kind regards,
Wojciech Chmiel
by wojtek
Tue May 28, 2019 9:11 pm
Forum: Highcharts Usage
Topic: Solid Gauge with marker or indicator
Replies: 21
Views: 9614
 
Jump to post

Re: Solid Gauge with marker or indicator

Hi europeyoung,

Sure! Here, you've got an example in Angular 7: https://codesandbox.io/s/angular-ivi5j

Kind regards,
Wojciech Chmiel
by wojtek
Thu Apr 11, 2019 12:16 pm
Forum: Highcharts Usage
Topic: Multiple charts not resizing properly
Replies: 2
Views: 1211
 
Jump to post

Re: Multiple charts not resizing properly

Hi, This problem is not related to Highcharts, but vuetifyjs grid that you are using here. Tip: Simply use <v-flex> instead of <v-layout> inside another <v-layout>. Code: <template> <v-app id="app"> <v-container fluid> <v-content> <v-layout row> <v-flex xs12> <chart/> </v-flex> </v-layout>...
by wojtek
Mon Apr 01, 2019 3:11 pm
Forum: Highcharts Usage
Topic: Highcharts-Vue wrapper: can't get offline exporting work
Replies: 2
Views: 3899
 
Jump to post

Re: Highcharts-Vue wrapper: can't get offline exporting work

Hi,

Could you reproduce your chart/app in online code editor like codesandbox?

Here you can find an example of offline exporting in Vue: https://codesandbox.io/s/5zr73px56x - you can use it as a template.

Kind regards.
by wojtek
Tue Mar 26, 2019 3:19 pm
Forum: Highcharts Stock
Topic: Candlestick addPoint is not working
Replies: 7
Views: 2611
 
Jump to post

Re: Candlestick addPoint is not working

Hi lxdnttr, First of all, I've noticed that your data x value was wrong. The second issue is related strictly to Vue patterns. You've added a new point like that: this.chartOptions.series[0].data.push([time, open, high, low, close]); With a basic type (number, string) this method works perfectly fin...
by wojtek
Fri Mar 22, 2019 8:26 am
Forum: Highcharts Stock
Topic: Candlestick addPoint is not working
Replies: 7
Views: 2611
 
Jump to post

Re: Candlestick addPoint is not working

Hi lxdnttr,

Thanks for the answer. Could you reproduce this issue?

You can use the demo that I posted you in the previous message as a template: https://codesandbox.io/s/nw750l07nj.

Kind regards.

Go to advanced search