The first step is to create html page and add links to the javascript files and css dependencies to your project. The jqxHeatMap widget requires the following files:
$("#jqxHeatMap").jqxHeatMap('setPaletteType', 'Fixed');
To set a property(option), you need to pass the property name and value(s) in the
jqxHeatMap's constructor.
$("#jqxHeatMap").jqxHeatMap({ title: "Defective Car Parts Count per a Manufacturing Unit" });
To get a property(option), you need to pass the property name to the jqxHeatMap's
constructor.
var height = $("#jqxHeatMap").jqxHeatMap("title");