Available in the Full Version
Data Chart - Multiple Layers
This sample demonstrates how multiple layers interact within the igChart control. This sample displays the Category Tooltip Layer, the Crosshair layer and the Category Highlight Layer.
This sample uses CTP (Community Technical Preview) features. The API and behavior may change when these features are released with full support.
Population data from:
U.S. Census Bureau
U.S. Census Bureau
This sample is designed for a larger screen size.
On mobile, try rotating your screen, view full size, or email to another device.
Code View
Copy to Clipboard
<!DOCTYPE html> <html> <head> <title>Multiple Layers</title> <!-- Ignite UI for jQuery Required Combined CSS Files --> <link href="http://cdn-na.infragistics.com/igniteui/2024.1/latest/css/themes/infragistics/infragistics.theme.css" rel="stylesheet" /> <link href="http://cdn-na.infragistics.com/igniteui/2024.1/latest/css/structure/infragistics.css" rel="stylesheet" /> <!--CSS file specific for chart styling --> <link href="http://cdn-na.infragistics.com/igniteui/2024.1/latest/css/structure/modules/infragistics.ui.chart.css" rel="stylesheet" /> <script src="http://ajax.aspnetcdn.com/ajax/modernizr/modernizr-2.8.3.js"></script> <script src="http://code.jquery.com/jquery-1.11.3.min.js"></script> <script src="http://code.jquery.com/ui/1.11.1/jquery-ui.min.js"></script> <!-- Ignite UI for jQuery Required Combined JavaScript Files --> <script src="http://cdn-na.infragistics.com/igniteui/2024.1/latest/js/infragistics.core.js"></script> <script src="http://cdn-na.infragistics.com/igniteui/2024.1/latest/js/infragistics.dv.js"></script> </head> <body> <div id="chart"></div> <br/> <div class="USCensus-attribution"> Population data from:<br /> <a href="http://www.census.gov/" target="_blank">U.S. Census Bureau</a> </div> <script> $(function () { var data = [ { "CountryName": "China", "Pop1995": 1216, "Pop2005": 1297, "Pop2015": 1361, "Pop2025": 1394 }, { "CountryName": "India", "Pop1995": 920, "Pop2005": 1090, "Pop2015": 1251, "Pop2025": 1396 }, { "CountryName": "United States", "Pop1995": 266, "Pop2005": 295, "Pop2015": 322, "Pop2025": 351 }, { "CountryName": "Indonesia", "Pop1995": 197, "Pop2005": 229, "Pop2015": 256, "Pop2025": 277 }, { "CountryName": "Brazil", "Pop1995": 161, "Pop2005": 186, "Pop2015": 204, "Pop2025": 218 } ]; $("#chart").igDataChart({ width: "100%", height: "400px", title: "Population per Country", subtitle: "A comparison of population in 1995 and 2005", dataSource: data, horizontalZoomable: true, verticalZoomable: true, axes: [ { name: "NameAxis", type: "categoryX", title: "Country", label: "CountryName" }, { name: "PopulationAxis", type: "numericY", minimumValue: 0, title: "Millions of People", } ], series: [ { name: "2005Population", type: "column", title: "2005 Population", xAxis: "NameAxis", yAxis: "PopulationAxis", valueMemberPath: "Pop2005", isTransitionInEnabled: true, isHighlightingEnabled: true, showTooltip: true }, { name: "1995Population", type: "column", title: "1995 Population", xAxis: "NameAxis", yAxis: "PopulationAxis", valueMemberPath: "Pop1995", isTransitionInEnabled: true, isHighlightingEnabled: true, showTooltip: true }, { name: "crosshairLayer", title: "crosshair", type: "crosshairLayer", useInterpolation: false, transitionDuration: 250 }, { name: "catItemHighlightLayer", title: "categoryItemHighlight", type: "categoryItemHighlightLayer", useInterpolation: false, transitionDuration: 250 }, { name: "categoryToolTipLayer", title: "categoryToolTip", type: "categoryToolTipLayer", useInterpolation: false, transitionDuration: 250 }] }); }); </script> </body> </html>