Basic Column Chart - CanvasJS JavaScript Charts

Basic Column Chart - CanvasJS JavaScript Charts

by NISHA VERMA

HTML

<script src="https://canvasjs.com/assets/script/canvasjs.min.js"></script>
<br/><!-- Just so that JSFiddle's Result label doesn't overlap the Chart -->
<div id="chartContainer" style="height: 360px; width: 100%;"></div>

JavaScript

var chart = new CanvasJS.Chart("chartContainer",{              
		title:{
			text: "Multiple Y Axis"
		},
		axisX:{
			valueFormatString: "####",
			interval: 1
		},
		axisY:[{
			title: "Linear Scale",
			lineColor: "#369EAD",
			titleFontColor: "#369EAD",
			labelFontColor: "#369EAD"
		},
		{
			title: "Logarithmic Scale",
			logarithmic: true,
			lineColor: "#C24642",
			titleFontColor: "#C24642",
			labelFontColor: "#C24642"
		}],
		axisY2:[{
			title: "Linear Scale",
			lineColor: "#7F6084",
			titleFontColor: "#7F6084",
			labelFontColor: "#7F6084"
		},
		{
			title: "Logarithmic Scale",
			logarithmic: true,
			interval: 1,
			lineColor: "#86B402",
			titleFontColor: "#86B402",
			labelFontColor: "#86B402"
		}],

	data: [
	{
		type: "column",
		showInLegend: true,
		name: "Axis Y-1",
		xValueFormatString: "####",
		dataPoints: [
			{ x: 2006, y: 6 },
			{ x: 2007, y: 2 },
			{ x: 2008, y: 5 },
			{ x: 2009, y: 7 },
			{ x: 2010, y: 1 },
			{ x: 2011, y: 5 },
			{ x: 2012, y: 5 },
			{ x: 2013, y: 2 },
			{ x: 2014, y: 2 }
		]
	},
	{
		type: "spline",
		showInLegend: true,
		axisYIndex: 1, //Defaults to Zero
		name: "Axis Y-2",
		xValueFormatString: "####",
		dataPoints: [
			{ x: 2006, y: 15 },
			{ x: 2007, y: 3 },
			{ x: 2008, y: 20 },
			{ x: 2009, y: 10 },
			{ x: 2010, y: 30 },
			{ x: 2011, y: 10 },
			{ x: 2012, y: 600 },
			{ x: 2013, y: 20 },
			{ x: 2014, y: 2 }
		]
	},
	{
		type: "spline",
		showInLegend: true,                  	
		axisYType: "secondary",
		axisYIndex: 1, //When axisYType is secondary, axisYIndex indexes to secondary Y axis & not to primary Y axis
		name: "Axis Y2-2",
		xValueFormatString: "####",
		dataPoints: [
			{ x: 2006, y: 86 },
			{ x: 2007, y: 15 },
			{ x: 2008, y: 27 },
			{ x: 2009, y: 78 },
			{ x: 2010, y: 46 },
			{ x: 2011, y: 70 },
			{ x: 2012, y: 50 },
			{ x: 2013, y: 60 },
			{ x: 2014, y: 50 }
		]
	}
	]
	});

	chart.render()