Search found 16 matches

Go to advanced search

by orochimaster
Thu Dec 13, 2018 11:59 am
Forum: Highcharts Usage
Topic: Color order doesn't match
Replies: 3
Views: 483
 
Jump to post

Re: Color order doesn't match

Yes It worked well even with more graphs on the same page:

https://jsfiddle.net/qLnf4y1u/

I'll try to verify what I'm doing differnt...
by orochimaster
Thu Dec 13, 2018 1:21 am
Forum: Highcharts Usage
Topic: Color order doesn't match
Replies: 3
Views: 483
 
Jump to post

Color order doesn't match

Hello I have a highcharts that have a color order following the example: var pieColors = []; pieColors.push("#9B133B"); pieColors.push("#181C3C"); pieColors.push("#570870"); pieColors.push("#1B7AA7"); pieColors.push("#059590"); pieColors.push("#...
by orochimaster
Thu Nov 29, 2018 12:10 am
Forum: Highcharts Usage
Topic: Responsive pie is possible?
Replies: 3
Views: 5125
 
Jump to post

Re: Responsive pie is possible?

There were something it couId be responsive is the height.

You can see the graph height is always 400px.

Is there a way this graph to height be reduced when the width of the graph/table/div is reduced?
by orochimaster
Tue Nov 27, 2018 12:20 am
Forum: Highcharts Usage
Topic: Responsive pie is possible?
Replies: 3
Views: 5125
 
Jump to post

Responsive pie is possible?

I made this jsfiddle: http://jsfiddle.net/q5keu9p0/1/ 1- What I want is the pie graphs to be responsive. You can see when you change the window screen the pie doesn't return to the original size when the screen was opened. 2- Is there a way to the height of the chart to be the sabe as the weight of ...
by orochimaster
Thu Sep 20, 2018 10:29 pm
Forum: Highcharts Usage
Topic: Problem when Fit the graph
Replies: 1
Views: 220
 
Jump to post

Problem when Fit the graph

Hello I post this example:

https://jsfiddle.net/2s8u0qx3/7/

The problem is when I reduce the size of the screen the labels are cut.

Is there a way to avoid this? Take a look at the attachment...
by orochimaster
Mon Sep 03, 2018 3:15 pm
Forum: Highcharts Usage
Topic: How to change the style of line Highcharts polar graph
Replies: 1
Views: 266
 
Jump to post

How to change the style of line Highcharts polar graph

Take a look at this graph: https://jsfiddle.net/tczqub5a/4/ You can see the the extremity value is printed as a: -circle -A square inverted/rotated - And a non rotated square I want them all to be circles, Is it possible to change the extremity to be a circle? I couldn't find the property to do that.
by orochimaster
Wed Aug 08, 2018 10:55 pm
Forum: Highcharts Stock
Topic: polar graph together with highstock
Replies: 3
Views: 646
 
Jump to post

Re: polar graph together with highstock

Hi orochimaster, As you can read about error 16, it throws an error when you load both highcharts.js and highstock.js in the same page. highstock.js includes Highcharts.chart constructor and all Highcharts features, so we need to load only one file. Here you have an example of spiderweb chart toget...
by orochimaster
Wed Aug 08, 2018 2:26 pm
Forum: Highcharts Usage
Topic: fixed range polar graph
Replies: 1
Views: 208
 
Jump to post

fixed range polar graph

I'm using the polar graphic:

https://www.highcharts.com/demo/polar-spider

If I change the series dynamically the range of the graph changes dynamically.

But I want them to be fixed between 0 and 10 for example.

Is there a way to make the range of the graph to not change?
by orochimaster
Thu Aug 02, 2018 12:15 am
Forum: Highcharts Stock
Topic: polar graph together with highstock
Replies: 3
Views: 646
 
Jump to post

polar graph together with highstock

I want to use the spiderweb or polar chart graph with highstock: https://www.highcharts.com/demo/polar-spider But when I use it with highstock, so I have a highstock graph and a highcharts spiderweb: https://jsfiddle.net/szLdc4h2/1/ But the graph gives me this error: a Uncaught Error: Highcharts err...
by orochimaster
Mon Jul 31, 2017 9:58 pm
Forum: Highcharts Stock
Topic: How to display Navigator as bar chart
Replies: 3
Views: 2203
 
Jump to post

Re: How to display Navigator as bar chart

I changed the baseSeries to this: http://jsfiddle.net/oqpr2gyh/14/ It worked for this example as you said. If it is not recommended, how to setup a given series to the navigator? Because I have a "Stacked column" chart like this: http://jsfiddle.net/tn8rLhym/ You can see the navigator isn'...
by orochimaster
Sun Jul 30, 2017 2:16 am
Forum: Highcharts Stock
Topic: How to display Navigator as bar chart
Replies: 3
Views: 2203
 
Jump to post

How to display Navigator as bar chart

I have this example: http://jsfiddle.net/oqpr2gyh/7/ The bar graph is ok, it prints the main graph bars ok. BUT the navigator is wrong, it prints the bars duplicated. I tried to setup the navigator manually, because it doesnt have the column type if I don't setup data in it. So what should I do to h...
by orochimaster
Fri Jul 28, 2017 12:55 pm
Forum: Highcharts Usage
Topic: Highcharts share state a among different pages
Replies: 1
Views: 389
 
Jump to post

Highcharts share state a among different pages

When I setup two or more highcharts graphics in different pages it shares the variables of the chart. If I create a graph with a color in a given page it will be used in the other (if I don't set it to a different state for example). I don't want to share the state among pages. I want it to be reset...
by orochimaster
Wed Jan 25, 2017 11:54 am
Forum: Highcharts Stock
Topic: Bug: series tooltip doesn't render when use series.setData
Replies: 1
Views: 922
 
Jump to post

Bug: series tooltip doesn't render when use series.setData

Take a look at that: http://jsfiddle.net/b6b63nwy/10/ If I set (on afterSetExtremes): this.chart.series[0].setData(data_to_set, false); The tooltip of the series doesn't appear any more when the navigator is triggered. But if I set: this.chart.series[0].setData(data_to_set); The toolip appear again,...
by orochimaster
Mon Jan 23, 2017 11:17 am
Forum: Highcharts Usage
Topic: Bug on after set extremes with flags?
Replies: 3
Views: 946
 
Jump to post

Re: Bug on after set extremes with flags?

Ok It works.

But take a look at that:

http://jsfiddle.net/b6b63nwy/10/

If I set:

Code: Select all

this.chart.series[0].setData(data_to_set, false);
The tooltip of the series doesn't appear any more when the navigator is triggered.
by orochimaster
Tue Jan 17, 2017 11:24 am
Forum: Highcharts Usage
Topic: Bug on after set extremes with flags?
Replies: 3
Views: 946
 
Jump to post

Bug on after set extremes with flags?

Take a look at that: http://jsfiddle.net/b6b63nwy/7 the highstocks just bugs when the navigator is changed, it appears to be in an infinite loop when afterSetExtremes event is triggered. If I reduce the number of elements to 30 the graph doesn't bugs: http://jsfiddle.net/b6b63nwy/6 I formulated this...

Go to advanced search