question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Highcharts Error #17 The requested series type does not exist

See original GitHub issue

when I plot an chart whose type is ‘solidgauge’, It went to an error. After I search for material,I tried below code , but same error comes.

`var ReactHighcharts = require('react-highcharts');

var HighchartsMore = require('highcharts-more');

HighchartsMore(ReactHighcharts.Highcharts);

var HighchartsExporting = require('highcharts-exporting');

HighchartsExporting(ReactHighcharts.Highcharts);

require('highcharts/js/highcharts-more')(ReactHighcharts.Highcharts);`

How can I deal with it?

Issue Analytics

  • State:open
  • Created 6 years ago
  • Comments:12

github_iconTop GitHub Comments

5reactions
1xKarthikcommented, Oct 18, 2019

This worked for me for React for speedometer/Guage: https://www.highcharts.com/blog/snippets/speedometer-with-animation/

import Highcharts from 'highcharts';
import HighchartsReact from "highcharts-react-official";
import HC_more from 'highcharts/highcharts-more'
import Guage from "highcharts/modules/solid-gauge";

HC_more(Highcharts);
Guage(Highcharts);

options = {
    chart: {
      type: 'gauge'
    },
}
2reactions
spacedarcycommented, Mar 29, 2018

@aaronbeall’s solution works for xrange series, but @lorezzed 's does not, as webpack can’t resolve the module.

Update: adding 'highcharts-xrange-series': path.resolve(__dirname, 'node_modules/highcharts/modules/xrange-series.js') to webpack’s resolve.alias seems to have fixed this.

Read more comments on GitHub >

github_iconTop Results From Across the Web

How to resolve Highcharts Error #17 in Highcharts Angular ...
This error happens when setting chart.type or series.type to a series type that isn't defined in Highcharts. A typical reason may be that...
Read more >
How can I fix the error #17 "The requested series type does ...
[Solved]-How can I fix the error #17 "The requested series type does not exist" error when trying to display a highcharts graph in...
Read more >
Highcharts requires a js file. How can I load it and make it ...
The requested series type does not exist ... This error happens when setting chart.type or series.type to a series type that isn't defined...
Read more >
funnel highcharts demo error - OutSystems
Error Highcharts error #17 -> In those JSON for Chart : {Type: 'funnel ' ,} there may be lack of required script. that's...
Read more >
Highcharts Error #17 The requested series type does not exist
Highcharts Error #17 The requested series type does not exist · Javascript Required. Kindly enable Javascript. · Updates · Content Removed.
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found