• Demos
    • JavaScript Charts
    • JavaScript StockCharts
  • Download/NPM
    • Download CanvasJS
    • Install via NPM
  • Integrations
    Front End Technology Samples
    • React Charts
    • Angular Charts
    • Vue.js Charts New!
    • jQuery Charts
    • Dashboards
    Server Side Technology Samples
    • PHP Charts
    • Python Charts New!
    • ASP.NET MVC Charts
    • Spring MVC Charts
    • JSP Charts
  • License
  • Blog
  • Docs
    • Chart Documentation
    • StockChart Documentation
  • Support Forum
    • Chart Support
    • StockChart Support
  • My Account
My Account
  • KEY FEATURES
    • Chart with Zooming and Panning
    • Exporting Chart to Image
    • Chart with Animation
    • Chart with Multiple Axes
    • Chart with Dynamic Data
    • Chart with Logarithmic Axis
    • Chart using JSON Data
    • Performance with 50,000 Data Points
    • Chart with Crosshair
    • Chart inside Re-Sizable Container
    • Charts inside jQuery Tabs
    • Chart inside Popup Modal
    • Responsive jQuery Chart
    • Drilldown Chart
  • LINE CHARTS
    • Line Chart
    • Spline Chart
    • Step Line Chart
  • AREA CHARTS
    • Area Chart
    • Multi Series Area Chart with Date Time
    • Spline Area Chart
    • Multi Series Spline Area
    • Step Area Chart
    • Range Area Chart
    • Range Spline Area Chart
    • Stacked Area Chart
    • Stacked Area 100% Chart
  • COLUMN & BAR CHARTS
    • Column Chart
    • Bar Chart
    • Range Column Chart
    • Stacked Column Chart
    • Stacked Column 100% Chart
    • Range Bar Chart
    • Stacked Bar Chart
    • Stacked Bar 100% Chart
    • Waterfall Chart
  • PIE & FUNNEL CHARTS
    • Pie Chart
    • Pie Chart with Index Labels Placed Inside
    • Doughnut Chart
    • Funnel Chart
    • Funnel Chart with Custom Neck
    • Pyramid Chart
  • FINANCIAL CHARTS
    • Candlestick Chart
    • Candlestick Chart from JSON
    • OHLC Chart
  • SCATTER & BUBBLE CHARTS
    • Scatter Chart
    • Scatter Chart with Custom Markers
    • Bubble Chart
  • BOX & WHISKER CHARTS
    • Box and Whisker Chart
    • Box and Whisker Chart with Outliers
  • COMBINATION CHARTS
    • Error Chart
    • Error Line Chart
    • Combination of Column, Line and Area Chart
  • DYNAMIC CHARTS
    • Dynamic Line Chart
    • Dynamic Column Chart
    • Dynamic Multi Series Chart
  • STOCKCHARTS
    • StockChart with Numeric Axis
    • StockChart with Date-Time Axis
    • StockChart with SplineArea & Navigator
  • REACT, ANGULAR, VUE.JS, JAVASCRIPT
    • React Charts
    • Angular Charts
    • Vue.js Charts
    • JavaScript Charts
  • SERVER SIDE TECHNOLOGIES
    • ASP.NET MVC Charts
    • PHP Charts
    • Python Charts
    • JSP Charts
    • Spring MVC Charts

jQuery Range Area Charts & Graphs

Download jQuery Chart Samples
  • jQuery Chart Samples
  • JavaScript Chart Samples
  • React Chart Samples
  • Angular Chart Samples
  • Vue.js Chart Samples
  • PHP Chart Samples
  • Python Django Chart Samples
  • ASP.NET Chart Samples
  • JSP Chart Samples
  • Spring MVC Chart Samples
  • Dashboard Samples
  • JavaScript StockChart Samples

jQuery Range Area graphs are generally used to show variations (low & high) in a given time range like temperature, price etc. Given example shows jQuery Range Area Chart along with HTML source code that you can edit in-browser or save to run it locally.

Try Editing The Code

Download Copy JSFiddle
window.onload = function () {

var options = {
	animationEnabled: true,
	exportEnabled: true,
	title:{
		text: "Temperature in Newark - November 2017"
	},
	axisY: {
		includeZero:false,
		title: "Temperature (°C)",
		suffix: " °C"
	},
	axisX: {
		valueFormatString: "DD MMM"
	},
	data: [
	{
		type: "rangeArea",
		xValueFormatString: "DD MMMM", 
		yValueFormatString: "#0.## °C",
		toolTipContent: " <span style=\"color:#4F81BC\">{x}</span><br><b>Min:</b> {y[0]}<br><b>Max:</b> {y[1]}",,
		dataPoints: [
			{ x: new Date(2017, 10, 1), y: [4, 14] },
			{ x: new Date(2017, 10, 2), y: [13, 24] },
			{ x: new Date(2017, 10, 3), y: [10, 24] },
			{ x: new Date(2017, 10, 4), y: [6, 14] },
			{ x: new Date(2017, 10, 5), y: [12, 17] },
			{ x: new Date(2017, 10, 6), y: [8, 19] },
			{ x: new Date(2017, 10, 7), y: [4, 10] },
			{ x: new Date(2017, 10, 8), y: [4, 11] },
			{ x: new Date(2017, 10, 9), y: [3, 12] },
			{ x: new Date(2017, 10, 10), y: [-4, 10] },
			{ x: new Date(2017, 10, 11), y: [-4, 5] },
			{ x: new Date(2017, 10, 12), y: [-2, 9] },
			{ x: new Date(2017, 10, 13), y: [3, 9] },
			{ x: new Date(2017, 10, 14), y: [2, 9] },
			{ x: new Date(2017, 10, 15), y: [1, 12] },
			{ x: new Date(2017, 10, 16), y: [7, 15] },
			{ x: new Date(2017, 10, 17), y: [3, 10] },
			{ x: new Date(2017, 10, 18), y: [-1, 12] },
			{ x: new Date(2017, 10, 19), y: [4, 15] },
			{ x: new Date(2017, 10, 20), y: [2, 9] },
			{ x: new Date(2017, 10, 21), y: [2, 16] },
			{ x: new Date(2017, 10, 22), y: [2, 13] },
			{ x: new Date(2017, 10, 23), y: [-1, 8] },
			{ x: new Date(2017, 10, 24), y: [-3, 11] },
			{ x: new Date(2017, 10, 25), y: [1, 15] },
			{ x: new Date(2017, 10, 26), y: [3, 11] },
			{ x: new Date(2017, 10, 27), y: [3, 12] },
			{ x: new Date(2017, 10, 28), y: [0, 12] },
			{ x: new Date(2017, 10, 29), y: [4, 19] },
			{ x: new Date(2017, 10, 30), y: [0, 11] }
		]
	}]
};
$("#chartContainer").CanvasJSChart(options);

}                                

Chart Customizations

The color & opacity of the filled area can be customized using color & fillOpacity properties. Other frequently used customizations include markerSize, markerType, markerColor, markerBorderColor, etc.

Note   For step by step instructions, follow our jQuery Integration Tutorial

Quick Links

  • Chart Docs
  • StockChart Docs
  • About Us
  • FAQs

Server Side Technologies

  • ASP.NET MVC Charts
  • PHP Charts
  • JSP Charts
  • Spring MVC Charts

Front Side Technologies

  • JavaScript Charts
  • jQuery Charts
  • React Charts
  • Angular Charts
  • JavaScript StockCharts

Contact

  • Fenopix, Inc.
  • 2093 Philadelphia Pike,
  • #5678, Claymont,
  • Delaware 19703
  • United States Of America

©2025 Fenopix Privacy Policy Cookies Policy Careers