Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <!DOCTYPE html>
<html>
  <head>
    <meta charset="UTF-8" />
    <title>Different Breakdown Types according to Months</title>
    <script src="//www.amcharts.com/lib/4/core.js"></script>
    <script src="//www.amcharts.com/lib/4/charts.js"></script>
    <script src="//www.amcharts.com/lib/4/maps.js"></script>
    <script src="https://www.amcharts.com/lib/4/themes/kelly.js"></script>
    <script src="//www.amcharts.com/lib/4/themes/animated.js"></script>
    <link rel="stylesheet" href="index.css" />
  </head>
    
<script>
am4core.useTheme(am4themes_dark);
am4core.useTheme(am4themes_animated);
</script>
    

  <body>
    <div id="chartdiv"></div>
    <script src="//www.amcharts.com/lib/4/core.js"></script>
    <script src="//www.amcharts.com/lib/4/charts.js"></script>
    <script src="//www.amcharts.com/lib/4/maps.js"></script>
    <script src="https://www.amcharts.com/lib/4/themes/kelly.js"></script>
    <script src="//www.amcharts.com/lib/4/themes/animated.js"></script>
    <script src="index.js"></script>
  </body>
</html>


              
            
!

CSS

              
                body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  background-color: #30303d; 
  color: #fff; 
  overflow: hidden;
  margin: 0;
}

#chartdiv {
  width: 70%;
  height: 90vh;
}
              
            
!

JS

              
                am4core.addLicense("CH211653105"); 
/* Chart code */
// Themes begin
am4core.useTheme(am4themes_kelly);
am4core.useTheme(am4themes_animated);
// Themes end


var chart = am4core.create("chartdiv", am4charts.RadarChart);

chart.data = [{
  "category":"Nov2012",
  
  "value1": 6,   //manCausedAccidents
  "value2": 3,   //equipmentProblem
  "value3": 2,   //potentialDanger
  "value4": 0,   //operationProblem
  "value5": 0,   //socialEvents
  "value6": 0,   //Construction
  "value7": 0,   //diverseIncidents
  "value8": 0    //weatherCondition
    
}, {
  "category": "Dec2012",
  "value1": 3,   //manCausedAccidents
  "value2": 7,   //equipmentProblem
  "value3": 3,   //potentialDanger
  "value4": 1,   //operationProblem
  "value5": 0,   //socialEvents
  "value6": 0,   //Construction
  "value7": 0,   //diverseIncidents
  "value8": 0    //weatherCondition
}, {
  "category": "Jan2013",
  "value1": 3,   //manCausedAccidents
  "value2": 6,   //equipmentProblem
  "value3": 3,   //potentialDanger
  "value4": 0,   //operationProblem
  "value5": 0,   //socialEvents
  "value6": 0,   //Construction
  "value7": 0,   //diverseIncidents
  "value8": 4    //weatherCondition
}, {
  "category": "Feb2013",
  "value1": 5,   //manCausedAccidents
  "value2": 9,   //equipmentProblem
  "value3": 2,   //potentialDanger
  "value4": 1,   //operationProblem
  "value5": 0,   //socialEvents
  "value6": 2,   //Construction
  "value7": 0,   //diverseIncidents
  "value8": 1    //weatherCondition
}, {
  "category": "Mar2013",
  "value1": 4,   //manCausedAccidents
  "value2": 7,   //equipmentProblem
  "value3": 2,   //potentialDanger
  "value4": 0,   //operationProblem
  "value5": 0,   //socialEvents
  "value6": 0,   //Construction
  "value7": 0,   //diverseIncidents
  "value8": 5    //weatherCondition
}, {
  "category": "Apr2013",
  "value1": 8,   //manCausedAccidents
  "value2": 5,   //equipmentProblem
  "value3": 6,   //potentialDanger
  "value4": 0,   //operationProblem
  "value5": 0,   //socialEvents
  "value6": 0,   //Construction
  "value7": 0,   //diverseIncidents
  "value8": 0    //weatherCondition
}, {
  "category": "May2013",
  "value1": 6,   //manCausedAccidents
  "value2": 8,   //equipmentProblem
  "value3": 2,   //potentialDanger
  "value4": 1,   //operationProblem
  "value5": 0,   //socialEvents
  "value6": 0,   //Construction
  "value7": 0,   //diverseIncidents
  "value8": 0    //weatherCondition
}, {
  "category": "Jun2013",
  "value1": 3,   //manCausedAccidents
  "value2": 8,   //equipmentProblem
  "value3": 10,   //potentialDanger
  "value4": 3,   //operationProblem
  "value5": 1,   //socialEvents
  "value6": 0,   //Construction
  "value7": 0,   //diverseIncidents
  "value8": 1    //weatherCondition
},{
  "category": "Jul2013",
  "value1": 5,   //manCausedAccidents
  "value2": 3,   //equipmentProblem
  "value3": 4,   //potentialDanger
  "value4": 0,   //operationProblem
  "value5": 0,   //socialEvents
  "value6": 1,   //Construction
  "value7": 0,   //diverseIncidents
  "value8": 3    //weatherCondition
},{
  "category": "Aug2013",
  "value1": 4,   //manCausedAccidents
  "value2": 6,   //equipmentProblem
  "value3": 6,   //potentialDanger
  "value4": 1,   //operationProblem
  "value5": 0,   //socialEvents
  "value6": 6,   //Construction
  "value7": 0,   //diverseIncidents
  "value8": 0    //weatherCondition
},{
  "category": "Sep2013",
  "value1": 3,   //manCausedAccidents
  "value2": 13,   //equipmentProblem
  "value3": 12,   //potentialDanger
  "value4": 1,   //operationProblem
  "value5": 0,   //socialEvents
  "value6": 0,   //Construction
  "value7": 0,   //diverseIncidents
  "value8": 0    //weatherCondition
},{
  "category": "Oct2013",
  "value1": 8,   //manCausedAccidents
  "value2": 21,   //equipmentProblem
  "value3": 2,   //potentialDanger
  "value4": 2,   //operationProblem
  "value5": 0,   //socialEvents
  "value6": 0,   //Construction
  "value7": 0,   //diverseIncidents
  "value8": 0    //weatherCondition
},{
  "category": "Nov2013",
  "value1": 14,   //manCausedAccidents
  "value2": 10,   //equipmentProblem
  "value3": 8,   //potentialDanger
  "value4": 4,   //operationProblem
  "value5": 0,   //socialEvents
  "value6": 0,   //Construction
  "value7": 0,   //diverseIncidents
  "value8": 0    //weatherCondition
},{
  "category": "Dec2013",
  "value1": 8,   //manCausedAccidents
  "value2": 8,   //equipmentProblem
  "value3": 1,   //potentialDanger
  "value4": 0,   //operationProblem
  "value5": 1,   //socialEvents
  "value6": 0,   //Construction
  "value7": 0,   //diverseIncidents
  "value8": 0    //weatherCondition
}, {
  "category": "Jan2014",
  "value1": 10,   //manCausedAccidents
  "value2": 19,   //equipmentProblem
  "value3": 10,   //potentialDanger
  "value4": 1,   //operationProblem
  "value5": 0,   //socialEvents
  "value6": 2,   //Construction
  "value7": 0,   //diverseIncidents
  "value8": 0    //weatherCondition
}, {
  "category": "Feb2014",
  "value1": 3,   //manCausedAccidents
  "value2": 4,   //equipmentProblem
  "value3": 2,   //potentialDanger
  "value4": 1,   //operationProblem
  "value5": 0,   //socialEvents
  "value6": 1,   //Construction
  "value7": 0,   //diverseIncidents
  "value8": 0    //weatherCondition
}, {
  "category": "Mar2014",
  "value1": 7,   //manCausedAccidents
  "value2": 8,   //equipmentProblem
  "value3": 7,   //potentialDanger
  "value4": 0,   //operationProblem
  "value5": 0,   //socialEvents
  "value6": 0,   //Construction
  "value7": 1,   //diverseIncidents
  "value8": 0    //weatherCondition
}, {
  "category": "Apr2014",
  "value1": 14,   //manCausedAccidents
  "value2": 10,   //equipmentProblem
  "value3": 4,   //potentialDanger
  "value4": 3,   //operationProblem
  "value5": 0,   //socialEvents
  "value6": 0,   //Construction
  "value7": 4,   //diverseIncidents
  "value8": 0    //weatherCondition
}, {
  "category": "May2014",
  "value1": 5,   //manCausedAccidents
  "value2": 3,   //equipmentProblem
  "value3": 1,   //potentialDanger
  "value4": 0,   //operationProblem
  "value5": 0,   //socialEvents
  "value6": 0,   //Construction
  "value7": 2,   //diverseIncidents
  "value8": 0    //weatherCondition
}, {
  "category": "June2014",
  "value1": 5,   //manCausedAccidents
  "value2": 4,   //equipmentProblem
  "value3": 2,   //potentialDanger
  "value4": 0,   //operationProblem
  "value5": 27,   //socialEvents
  "value6": 0,   //Construction
  "value7": 0,   //diverseIncidents
  "value8": 0    //weatherCondition
},{
  "category": "Jul2014",
  "value1": 2,   //manCausedAccidents
  "value2": 2,   //equipmentProblem
  "value3": 1,   //potentialDanger
  "value4": 0,   //operationProblem
  "value5": 0,   //socialEvents
  "value6": 0,   //Construction
  "value7": 4,   //diverseIncidents
  "value8": 0    //weatherCondition
},{
  "category": "Aug2014",
  "value1": 2,   //manCausedAccidents
  "value2": 2,   //equipmentProblem
  "value3": 2,   //potentialDanger
  "value4": 1,   //operationProblem
  "value5": 0,   //socialEvents
  "value6": 0,   //Construction
  "value7": 1,   //diverseIncidents
  "value8": 0    //weatherCondition
},{
  "category": "Sep2014",
  "value1": 9,   //manCausedAccidents
  "value2": 0,   //equipmentProblem
  "value3": 3,   //potentialDanger
  "value4": 0,   //operationProblem
  "value5": 1,   //socialEvents
  "value6": 0,   //Construction
  "value7": 0,   //diverseIncidents
  "value8": 0    //weatherCondition
},{
  "category": "Oct2014",
  "value1": 7,   //manCausedAccidents
  "value2": 8,   //equipmentProblem
  "value3": 12,   //potentialDanger
  "value4": 1,   //operationProblem
  "value5": 1,   //socialEvents
  "value6": 0,   //Construction
  "value7": 0,   //diverseIncidents
  "value8": 0    //weatherCondition
},{
  "category": "Nov2014",
  "value1": 10,   //manCausedAccidents
  "value2": 10,   //equipmentProblem
  "value3": 5,   //potentialDanger
  "value4": 0,   //operationProblem
  "value5": 0,   //socialEvents
  "value6": 0,   //Construction
  "value7": 2,   //diverseIncidents
  "value8": 0    //weatherCondition
},{
  "category": "Dec2014",
  "value1": 7,   //manCausedAccidents
  "value2": 9,   //equipmentProblem
  "value3": 4,   //potentialDanger
  "value4": 2,   //operationProblem
  "value5": 0,   //socialEvents
  "value6": 0,   //Construction
  "value7": 1,   //diverseIncidents
  "value8": 0    //weatherCondition
}, {
  "category": "Jan2015",
  "value1": 5,   //manCausedAccidents
  "value2": 3,   //equipmentProblem
  "value3": 20,   //potentialDanger
  "value4": 4,   //operationProblem
  "value5": 0,   //socialEvents
  "value6": 1,   //Construction
  "value7": 0,   //diverseIncidents
  "value8": 0    //weatherCondition
}, {
  "category": "Feb2015",
  "value1": 9,   //manCausedAccidents
  "value2": 14,   //equipmentProblem
  "value3": 11,   //potentialDanger
  "value4": 0,   //operationProblem
  "value5": 0,   //socialEvents
  "value6": 0,   //Construction
  "value7": 0,   //diverseIncidents
  "value8": 0    //weatherCondition
}, {
  "category": "Mar2015",
  "value1": 6,   //manCausedAccidents
  "value2": 12,   //equipmentProblem
  "value3": 11,   //potentialDanger
  "value4": 0,   //operationProblem
  "value5": 0,   //socialEvents
  "value6": 1,   //Construction
  "value7": 2,   //diverseIncidents
  "value8": 0    //weatherCondition
}, {
  "category": "Apr2015",
  "value1": 16,   //manCausedAccidents
  "value2": 10,   //equipmentProblem
  "value3": 13,   //potentialDanger
  "value4": 4,   //operationProblem
  "value5": 0,   //socialEvents
  "value6": 0,   //Construction
  "value7": 3,   //diverseIncidents
  "value8": 0    //weatherCondition
}, {
  "category": "May2015",
  "value1": 10,   //manCausedAccidents
  "value2": 14,   //equipmentProblem
  "value3": 9,   //potentialDanger
  "value4": 5,   //operationProblem
  "value5": 0,   //socialEvents
  "value6": 4,   //Construction
  "value7": 1,   //diverseIncidents
  "value8": 0    //weatherCondition
}, {
  "category": "June2015",
  "value1": 6,   //manCausedAccidents
  "value2": 16,   //equipmentProblem
  "value3": 13,   //potentialDanger
  "value4": 2,   //operationProblem
  "value5": 2,   //socialEvents
  "value6": 0,   //Construction
  "value7": 1,   //diverseIncidents
  "value8": 0    //weatherCondition
},{
  "category": "Jul2015",
  "value1": 4,   //manCausedAccidents
  "value2": 7,   //equipmentProblem
  "value3": 2,   //potentialDanger
  "value4": 0,   //operationProblem
  "value5": 0,   //socialEvents
  "value6": 0,   //Construction
  "value7": 0,   //diverseIncidents
  "value8": 0    //weatherCondition
},{
  "category": "Aug2015",
  "value1": 10,   //manCausedAccidents
  "value2": 4,   //equipmentProblem
  "value3": 14,   //potentialDanger
  "value4": 3,   //operationProblem
  "value5": 0,   //socialEvents
  "value6": 1,   //Construction
  "value7": 1,   //diverseIncidents
  "value8": 0    //weatherCondition
},{
  "category": "Sep2015",
  "value1": 15,   //manCausedAccidents
  "value2": 5,   //equipmentProblem
  "value3": 0,   //potentialDanger
  "value4": 0,   //operationProblem
  "value5": 0,   //socialEvents
  "value6": 0,   //Construction
  "value7": 0,   //diverseIncidents
  "value8": 0    //weatherCondition
},{
  "category": "Oct2015",
  "value1": 11,   //manCausedAccidents
  "value2": 7,   //equipmentProblem
  "value3": 11,   //potentialDanger
  "value4": 2,   //operationProblem
  "value5": 0,   //socialEvents
  "value6": 0,   //Construction
  "value7": 0,   //diverseIncidents
  "value8": 0    //weatherCondition
},{
  "category": "Nov2015",
  "value1": 6,   //manCausedAccidents
  "value2": 5,   //equipmentProblem
  "value3": 28,   //potentialDanger
  "value4": 2,   //operationProblem
  "value5": 0,   //socialEvents
  "value6": 0,   //Construction
  "value7": 0,   //diverseIncidents
  "value8": 0    //weatherCondition
},{
  "category": "Dec2015",
  "value1": 10,   //manCausedAccidents
  "value2": 8,   //equipmentProblem
  "value3": 13,   //potentialDanger
  "value4": 3,   //operationProblem
  "value5": 0,   //socialEvents
  "value6": 0,   //Construction
  "value7": 1,   //diverseIncidents
  "value8": 0    //weatherCondition
}, {
  "category": "Jan2016",
  "value1": 8,   //manCausedAccidents
  "value2": 10,   //equipmentProblem
  "value3": 8,   //potentialDanger
  "value4": 4,   //operationProblem
  "value5": 0,   //socialEvents
  "value6": 0,   //Construction
  "value7": 0,   //diverseIncidents
  "value8": 0    //weatherCondition
}, {
  "category": "Feb2016",
  "value1": 16,   //manCausedAccidents
  "value2": 5,   //equipmentProblem
  "value3": 7,   //potentialDanger
  "value4": 5,   //operationProblem
  "value5": 0,   //socialEvents
  "value6": 1,   //Construction
  "value7": 1,   //diverseIncidents
  "value8": 0    //weatherCondition
}, {
  "category": "Mar2016",
  "value1": 11,   //manCausedAccidents
  "value2": 4,   //equipmentProblem
  "value3": 7,   //potentialDanger
  "value4": 2,   //operationProblem
  "value5": 2,   //socialEvents
  "value6": 0,   //Construction
  "value7": 1,   //diverseIncidents
  "value8": 0    //weatherCondition
}, {
  "category": "Apr2016",
  "value1": 7,   //manCausedAccidents
  "value2": 9,   //equipmentProblem
  "value3": 7,   //potentialDanger
  "value4": 2,   //operationProblem
  "value5": 5,   //socialEvents
  "value6": 2,   //Construction
  "value7": 1,   //diverseIncidents
  "value8": 0    //weatherCondition
}, {
  "category": "May2016",
  "value1": 6,   //manCausedAccidents
  "value2": 18,   //equipmentProblem
  "value3": 7,   //potentialDanger
  "value4": 0,   //operationProblem
  "value5": 3,   //socialEvents
  "value6": 4,   //Construction
  "value7": 0,   //diverseIncidents
  "value8": 0    //weatherCondition
}, {
  "category": "June2016",
  "value1": 6,   //manCausedAccidents
  "value2": 7,   //equipmentProblem
  "value3": 9,   //potentialDanger
  "value4": 2,   //operationProblem
  "value5": 17,   //socialEvents
  "value6": 0,   //Construction
  "value7": 0,   //diverseIncidents
  "value8": 0    //weatherCondition
},{
  "category": "Jul2016",
  "value1": 6,   //manCausedAccidents
  "value2": 5,   //equipmentProblem
  "value3": 15,   //potentialDanger
  "value4": 2,   //operationProblem
  "value5": 0,   //socialEvents
  "value6": 0,   //Construction
  "value7": 2,   //diverseIncidents
  "value8": 0    //weatherCondition
},{
  "category": "Aug2016",
  "value1": 6,   //manCausedAccidents
  "value2": 10,   //equipmentProblem
  "value3": 5,   //potentialDanger
  "value4": 5,   //operationProblem
  "value5": 0,   //socialEvents
  "value6": 0,   //Construction
  "value7": 0,   //diverseIncidents
  "value8": 0    //weatherCondition
},{
  "category": "Sep2016",
  "value1": 2,   //manCausedAccidents
  "value2": 7,   //equipmentProblem
  "value3": 10,   //potentialDanger
  "value4": 2,   //operationProblem
  "value5": 0,   //socialEvents
  "value6": 0,   //Construction
  "value7": 0,   //diverseIncidents
  "value8": 0    //weatherCondition
},{
  "category": "Oct2016",
  "value1": 13,   //manCausedAccidents
  "value2": 11,   //equipmentProblem
  "value3": 14,   //potentialDanger
  "value4": 3,   //operationProblem
  "value5": 0,   //socialEvents
  "value6": 2,   //Construction
  "value7": 0,   //diverseIncidents
  "value8": 0    //weatherCondition
},{
  "category": "Nov2016",
  "value1": 16,   //manCausedAccidents
  "value2": 14,   //equipmentProblem
  "value3": 18,   //potentialDanger
  "value4": 1,   //operationProblem
  "value5": 0,   //socialEvents
  "value6": 1,   //Construction
  "value7": 0,   //diverseIncidents
  "value8": 0    //weatherCondition
},{
  "category": "Dec2016",
  "value1": 6,   //manCausedAccidents
  "value2": 10,   //equipmentProblem
  "value3": 6,   //potentialDanger
  "value4": 1,   //operationProblem
  "value5": 1,   //socialEvents
  "value6": 0,   //Construction
  "value7": 0,   //diverseIncidents
  "value8": 0    //weatherCondition
}, {
  "category": "Jan2017",
  "value1": 14,   //manCausedAccidents
  "value2": 8,   //equipmentProblem
  "value3": 8,   //potentialDanger
  "value4": 2,   //operationProblem
  "value5": 0,   //socialEvents
  "value6": 0,   //Construction
  "value7": 0,   //diverseIncidents
  "value8": 0    //weatherCondition
}, {
  "category": "Feb2017",
  "value1": 7,   //manCausedAccidents
  "value2": 8,   //equipmentProblem
  "value3": 5,   //potentialDanger
  "value4": 0,   //operationProblem
  "value5": 0,   //socialEvents
  "value6": 1,   //Construction
  "value7": 0,   //diverseIncidents
  "value8": 0    //weatherCondition
}, {
  "category": "Mar2017",
  "value1": 16,   //manCausedAccidents
  "value2": 13,   //equipmentProblem
  "value3": 15,   //potentialDanger
  "value4": 3,   //operationProblem
  "value5": 1,   //socialEvents
  "value6": 2,   //Construction
  "value7": 0,   //diverseIncidents
  "value8": 0    //weatherCondition
}, {
  "category": "Apr2017",
  "value1": 6,   //manCausedAccidents
  "value2": 8,   //equipmentProblem
  "value3": 9,   //potentialDanger
  "value4": 3,   //operationProblem
  "value5": 0,   //socialEvents
  "value6": 0,   //Construction
  "value7": 0,   //diverseIncidents
  "value8": 0    //weatherCondition
}, {
  "category": "May2017",
  "value1": 14,   //manCausedAccidents
  "value2": 14,   //equipmentProblem
  "value3": 5,   //potentialDanger
  "value4": 1,   //operationProblem
  "value5": 0,   //socialEvents
  "value6": 0,   //Construction
  "value7": 0,   //diverseIncidents
  "value8": 0    //weatherCondition
}, {
  "category": "June2017",
  "value1": 1,   //manCausedAccidents
  "value2": 7,   //equipmentProblem
  "value3": 3,   //potentialDanger
  "value4": 2,   //operationProblem
  "value5": 0,   //socialEvents
  "value6": 0,   //Construction
  "value7": 1,   //diverseIncidents
  "value8": 0    //weatherCondition
},{
  "category": "Jul2017",
  "value1": 12,   //manCausedAccidents
  "value2": 11,   //equipmentProblem
  "value3": 7,   //potentialDanger
  "value4": 0,   //operationProblem
  "value5": 0,   //socialEvents
  "value6": 2,   //Construction
  "value7": 0,   //diverseIncidents
  "value8": 0    //weatherCondition
},{
  "category": "Aug2017",
  "value1": 4,   //manCausedAccidents
  "value2": 3,   //equipmentProblem
  "value3": 2,   //potentialDanger
  "value4": 0,   //operationProblem
  "value5": 0,   //socialEvents
  "value6": 2,   //Construction
  "value7": 0,   //diverseIncidents
  "value8": 0    //weatherCondition
},{
  "category": "Sep2017",
  "value1": 12,   //manCausedAccidents
  "value2": 13,   //equipmentProblem
  "value3": 10,   //potentialDanger
  "value4": 1,   //operationProblem
  "value5": 3,   //socialEvents
  "value6": 1,   //Construction
  "value7": 3,   //diverseIncidents
  "value8": 0    //weatherCondition
},{
  "category": "Oct2017",
  "value1": 19,   //manCausedAccidents
  "value2": 22,   //equipmentProblem
  "value3": 4,   //potentialDanger
  "value4": 0,   //operationProblem
  "value5": 3,   //socialEvents
  "value6": 0,   //Construction
  "value7": 0,   //diverseIncidents
  "value8": 0    //weatherCondition
},{
  "category": "Nov2017",
  "value1": 18,   //manCausedAccidents
  "value2": 12,   //equipmentProblem
  "value3": 2,   //potentialDanger
  "value4": 1,   //operationProblem
  "value5": 0,   //socialEvents
  "value6": 1,   //Construction
  "value7": 1,   //diverseIncidents
  "value8": 1    //weatherCondition
},{
  "category": "Dec2017",
  "value1": 17,   //manCausedAccidents
  "value2": 14,   //equipmentProblem
  "value3": 0,   //potentialDanger
  "value4": 3,   //operationProblem
  "value5": 2,   //socialEvents
  "value6": 0,   //Construction
  "value7": 2,   //diverseIncidents
  "value8": 0    //weatherCondition
}, {
  "category": "Jan2018",
  "value1": 8,   //manCausedAccidents
  "value2": 12,   //equipmentProblem
  "value3": 2,   //potentialDanger
  "value4": 1,   //operationProblem
  "value5": 0,   //socialEvents
  "value6": 1,   //Construction
  "value7": 1,   //diverseIncidents
  "value8": 0    //weatherCondition
}, {
  "category": "Feb2018",
  "value1": 22,   //manCausedAccidents
  "value2": 19,   //equipmentProblem
  "value3": 3,   //potentialDanger
  "value4": 4,   //operationProblem
  "value5": 0,   //socialEvents
  "value6": 2,   //Construction
  "value7": 1,   //diverseIncidents
  "value8": 3    //weatherCondition
}, {
  "category": "Mar2018",
  "value1": 19,   //manCausedAccidents
  "value2": 11,   //equipmentProblem
  "value3": 8,   //potentialDanger
  "value4": 1,   //operationProblem
  "value5": 1,   //socialEvents
  "value6": 2,   //Construction
  "value7": 0,   //diverseIncidents
  "value8": 1    //weatherCondition
}, {
  "category": "Apr2018",
  "value1": 7,   //manCausedAccidents
  "value2": 4,   //equipmentProblem
  "value3": 5,   //potentialDanger
  "value4": 0,   //operationProblem
  "value5": 16,   //socialEvents
  "value6": 1,   //Construction
  "value7": 0,   //diverseIncidents
  "value8": 0    //weatherCondition
}, {
  "category": "May2018",
  "value1": 19,   //manCausedAccidents
  "value2": 8,   //equipmentProblem
  "value3": 3,   //potentialDanger
  "value4": 0,   //operationProblem
  "value5": 13,   //socialEvents
  "value6": 4,   //Construction
  "value7": 0,   //diverseIncidents
  "value8": 0    //weatherCondition
}, {
  "category": "June2018",
  "value1": 22,   //manCausedAccidents
  "value2": 13,   //equipmentProblem
  "value3": 23,   //potentialDanger
  "value4": 1,   //operationProblem
  "value5": 12,   //socialEvents
  "value6": 0,   //Construction
  "value7": 0,   //diverseIncidents
  "value8": 0    //weatherCondition
},{
  "category": "Jul2018",
  "value1": 9,   //manCausedAccidents
  "value2": 14,   //equipmentProblem
  "value3": 9,   //potentialDanger
  "value4": 1,   //operationProblem
  "value5": 0,   //socialEvents
  "value6": 0,   //Construction
  "value7": 0,   //diverseIncidents
  "value8": 1    //weatherCondition
},{
  "category": "Aug2018",
  "value1": 13,   //manCausedAccidents
  "value2": 11,   //equipmentProblem
  "value3": 0,   //potentialDanger
  "value4": 0,   //operationProblem
  "value5": 0,   //socialEvents
  "value6": 0,   //Construction
  "value7": 0,   //diverseIncidents
  "value8": 0    //weatherCondition
},{
  "category": "Sep2018",
  "value1": 15,   //manCausedAccidents
  "value2": 9,   //equipmentProblem
  "value3": 0,   //potentialDanger
  "value4": 0,   //operationProblem
  "value5": 0,   //socialEvents
  "value6": 0,   //Construction
  "value7": 1,   //diverseIncidents
  "value8": 0    //weatherCondition
},{
  "category": "Oct2018",
  "value1": 13,   //manCausedAccidents
  "value2": 14,   //equipmentProblem
  "value3": 3,   //potentialDanger
  "value4": 0,   //operationProblem
  "value5": 0,   //socialEvents
  "value6": 2,   //Construction
  "value7": 1,   //diverseIncidents
  "value8": 0    //weatherCondition
},{
  "category": "Nov2018",
  "value1": 17,   //manCausedAccidents
  "value2": 6,   //equipmentProblem
  "value3": 2,   //potentialDanger
  "value4": 1,   //operationProblem
  "value5": 0,   //socialEvents
  "value6": 0,   //Construction
  "value7": 2,   //diverseIncidents
  "value8": 1    //weatherCondition
},{
  "category": "Dec2018",
  "value1": 3,   //manCausedAccidents
  "value2": 6,   //equipmentProblem
  "value3": 6,   //potentialDanger
  "value4": 3,   //operationProblem
  "value5": 2,   //socialEvents
  "value6": 2,   //Construction
  "value7": 0,   //diverseIncidents
  "value8": 0    //weatherCondition
}, {
  "category": "Jan2019",
  "value1": 12,   //manCausedAccidents
  "value2": 8,   //equipmentProblem
  "value3": 2,   //potentialDanger
  "value4": 4,   //operationProblem
  "value5": 0,   //socialEvents
  "value6": 0,   //Construction
  "value7": 0,   //diverseIncidents
  "value8": 2    //weatherCondition
}, {
  "category": "Feb2019",
  "value1": 16,   //manCausedAccidents
  "value2": 10,   //equipmentProblem
  "value3": 4,   //potentialDanger
  "value4": 5,   //operationProblem
  "value5": 0,   //socialEvents
  "value6": 0,   //Construction
  "value7": 0,   //diverseIncidents
  "value8": 0    //weatherCondition
}, {
  "category": "Mar2019",
  "value1": 9,   //manCausedAccidents
  "value2": 8,   //equipmentProblem
  "value3": 2,   //potentialDanger
  "value4": 0,   //operationProblem
  "value5": 0,   //socialEvents
  "value6": 0,   //Construction
  "value7": 0,   //diverseIncidents
  "value8": 0    //weatherCondition
}, {
  "category": "Apr2019",
  "value1": 10,   //manCausedAccidents
  "value2": 7,   //equipmentProblem
  "value3": 7,   //potentialDanger
  "value4": 8,   //operationProblem
  "value5": 0,   //socialEvents
  "value6": 2,   //Construction
  "value7": 0,   //diverseIncidents
  "value8": 0    //weatherCondition
}, {
  "category": "May2019",
  "value1": 9,   //manCausedAccidents
  "value2": 5,   //equipmentProblem
  "value3": 4,   //potentialDanger
  "value4": 2,   //operationProblem
  "value5": 1,   //socialEvents
  "value6": 2,   //Construction
  "value7": 0,   //diverseIncidents
  "value8": 0    //weatherCondition
}, {
  "category": "June2019",
  "value1": 8,   //manCausedAccidents
  "value2": 17,   //equipmentProblem
  "value3": 2,   //potentialDanger
  "value4": 0,   //operationProblem
  "value5": 0,   //socialEvents
  "value6": 1,   //Construction
  "value7": 0,   //diverseIncidents
  "value8": 0    //weatherCondition
},{
  "category": "Jul2019",
  "value1": 14,   //manCausedAccidents
  "value2": 13,   //equipmentProblem
  "value3": 0,   //potentialDanger
  "value4": 2,   //operationProblem
  "value5": 0,   //socialEvents
  "value6": 4,   //Construction
  "value7": 2,   //diverseIncidents
  "value8": 0    //weatherCondition
},{
  "category": "Aug2019",
  "value1": 11,   //manCausedAccidents
  "value2": 13,   //equipmentProblem
  "value3": 2,   //potentialDanger
  "value4": 3,   //operationProblem
  "value5": 0,   //socialEvents
  "value6": 4,   //Construction
  "value7": 2,   //diverseIncidents
  "value8": 0    //weatherCondition
},{
  "category": "Sep2019",
  "value1": 15,   //manCausedAccidents
  "value2": 9,   //equipmentProblem
  "value3": 3,   //potentialDanger
  "value4": 5,   //operationProblem
  "value5": 3,   //socialEvents
  "value6": 1,   //Construction
  "value7": 1,   //diverseIncidents
  "value8": 0    //weatherCondition
},{
  "category": "Oct2019",
  "value1": 20,   //manCausedAccidents
  "value2": 10,   //equipmentProblem
  "value3": 5,   //potentialDanger
  "value4": 3,   //operationProblem
  "value5": 8,   //socialEvents
  "value6": 2,   //Construction
  "value7": 2,   //diverseIncidents
  "value8": 0    //weatherCondition
},{
  "category": "Nov2019",
  "value1": 12,   //manCausedAccidents
  "value2": 8,   //equipmentProblem
  "value3": 3,   //potentialDanger
  "value4": 4,   //operationProblem
  "value5": 0,   //socialEvents
  "value6": 3,   //Construction
  "value7": 0,   //diverseIncidents
  "value8": 0    //weatherCondition
},
             
]


chart.padding(10, 10, 10, 10);

chart.radius = am4core.percent(95);
chart.startAngle = 179.5;
chart.endAngle = 360.5;

chart.innerRadius = am4core.percent(60);

var categoryAxis = chart.xAxes.push(new am4charts.CategoryAxis());
categoryAxis.dataFields.category = "category";
categoryAxis.renderer.minGridDistance = 10;
categoryAxis.renderer.labels.template.location = 0.5;
categoryAxis.renderer.labels.template.fontSize = 9;
categoryAxis.renderer.labels.template.relativeRotation = 90;
categoryAxis.renderer.labels.template.fill=am4core.color("#F7F9F9");
categoryAxis.renderer.grid.template.location = 1;
categoryAxis.interactionsEnabled = false;

var valueAxis = chart.yAxes.push(new am4charts.ValueAxis());
valueAxis.tooltip.disabled = true;
valueAxis.renderer.minGridDistance = 10;
valueAxis.renderer.grid.template.strokeOpacity = 0.05
valueAxis.renderer.labels.template.fontSize = 7;
valueAxis.renderer.labels.template.fill=am4core.color("#F7F9F9");
valueAxis.interactionsEnabled = false;
valueAxis.renderer.axisAngle = 260;
valueAxis.renderer.gridType = "polygons";
valueAxis.min = 0;


var series1 = chart.series.push(new am4charts.RadarColumnSeries());
series1.columns.template.width = am4core.percent(80);
series1.name = "Man-Caused Accidents";
series1.dataFields.categoryX = "category";
series1.columns.template.tooltipText = "{name}: {valueY.value} times";
series1.dataFields.valueY = "value1";
series1.stacked = true;

var series2 = chart.series.push(new am4charts.RadarColumnSeries());
series2.columns.template.width = am4core.percent(80);
series2.columns.template.tooltipText = "{name}: {valueY.value} times";
series2.name = "Equipment Problem";
series2.dataFields.categoryX = "category";
series2.dataFields.valueY = "value2";
series2.stacked = true;

var series3 = chart.series.push(new am4charts.RadarColumnSeries());
series3.columns.template.width = am4core.percent(80);
series3.columns.template.tooltipText = "{name}: {valueY.value} times";
series3.name = "Potential Danger";
series3.dataFields.categoryX = "category";
series3.dataFields.valueY = "value3";
series3.stacked = true;

var series4 = chart.series.push(new am4charts.RadarColumnSeries());
series4.columns.template.width = am4core.percent(80);
series4.columns.template.tooltipText = "{name}: {valueY.value} times";
series4.name = "Operational Difficulties";
series4.dataFields.categoryX = "category";
series4.dataFields.valueY = "value4";
series4.stacked = true;

var series5 = chart.series.push(new am4charts.RadarColumnSeries());
series5.columns.template.width = am4core.percent(80);
series5.columns.template.tooltipText = "{name}: {valueY.value} times";
series5.name = "Social Events";
series5.dataFields.categoryX = "category";
series5.dataFields.valueY = "value5";
series5.stacked = true;

var series6 = chart.series.push(new am4charts.RadarColumnSeries());
series6.columns.template.width = am4core.percent(80);
series6.columns.template.tooltipText = "{name}: {valueY.value} times";
series6.name = "Construction";
series6.dataFields.categoryX = "category";
series6.dataFields.valueY = "value6";
series6.stacked = true;

var series7 = chart.series.push(new am4charts.RadarColumnSeries());
series7.columns.template.width = am4core.percent(80);
series7.columns.template.tooltipText = "{name}: {valueY.value} times";
series7.name = "Diverse Incidents";
series7.dataFields.categoryX = "category";
series7.dataFields.valueY = "value7";
series7.stacked = true;

var series8 = chart.series.push(new am4charts.RadarColumnSeries());
series8.columns.template.width = am4core.percent(80);
series8.columns.template.tooltipText = "{name}: {valueY.value} times";
series8.name = "Weather Condition";
series8.dataFields.categoryX = "category";
series8.dataFields.valueY = "value8";
series8.stacked = true;

chart.seriesContainer.zIndex = -1;

chart.scrollbarX = new am4core.Scrollbar();
chart.scrollbarX.exportable = false;
//chart.scrollbarY = new am4core.Scrollbar();
//chart.scrollbarY.exportable = false;

var slider = chart.createChild(am4core.Slider);
slider.start = 0.5;
slider.events.on("rangechanged", function () {

  var start = slider.start;

  chart.startAngle = 270 - start * 179 - 1;
  chart.endAngle = 270 + start * 179 + 1;

  valueAxis.renderer.axisAngle = chart.startAngle;
})

              
            
!
999px

Console