Skip to content

Instantly share code, notes, and snippets.

@patilv
Created November 7, 2013 19:01
Show Gist options
  • Save patilv/7360039 to your computer and use it in GitHub Desktop.
Save patilv/7360039 to your computer and use it in GitHub Desktop.
h4
<!doctype HTML>
<meta charset = 'utf-8'>
<html>
<head>
<script src='http://code.jquery.com/jquery-1.9.1.min.js' type='text/javascript'></script>
<script src='http://code.highcharts.com/highcharts.js' type='text/javascript'></script>
<script src='http://code.highcharts.com/highcharts-more.js' type='text/javascript'></script>
<script src='http://code.highcharts.com/modules/exporting.js' type='text/javascript'></script>
<style>
.rChart {
display: block;
margin-left: auto;
margin-right: auto;
width: 800px;
height: 400px;
}
</style>
</head>
<body>
<div id='chart62c4403458d' class='rChart highcharts'></div>
<script type='text/javascript'>
(function($){
$(function () {
var chart = new Highcharts.Chart({
"dom": "chart62c4403458d",
"width": 800,
"height": 400,
"credits": {
"href": null,
"text": null
},
"exporting": {
"enabled": false
},
"title": {
"text": null
},
"yAxis": [
{
"title": {
"text": "x"
}
}
],
"series": [
{
"data": [
[
"levelI",
998.8153846154
],
[
"levelII",
992.0538461538
],
[
"levelIII",
1010.3125
],
[
"levelIV",
1006.749166667
]
],
"type": "scatter",
"marker": {
"radius": 3
}
}
],
"legend": {
"enabled": false
},
"xAxis": [
{
"title": {
"text": "Group.1"
},
"categories": [ "levelI", "levelII", "levelIII", "levelIV" ]
}
],
"subtitle": {
"text": null
},
"id": "chart62c4403458d",
"chart": {
"renderTo": "chart62c4403458d"
}
});
});
})(jQuery);
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment