Check documentation for the latest version of dhtmlxSuite Object Constructor DHTMLX Docs

Object Constructor

Constructor is used to create an object and set its initial parameters.

Syntax

var myChart = new dhtmlChart(obj);

where:

  • view - specifies a chart type;
  • container - specifies an HTML container for a chart;
  • value - specifies data that will be presented in a chart.

Code snippet

var myChart = new dhtmlChart({
    view:"bar",
    container:"chart_container",
    value:"#sales#"
});

The code snippet shows how to create a dhtmlXChart object.

Back to top