Configuration properties are set in the chart constructor. Some of them are mandatory, others - optional.
var barChart = new dhtmlXChart({
view:"bar",
container:"chart_container",
value:"#sales#"
})
container - the id of the html container where you want display a chart
-
value - a property of dataset that chart represents
look and fill
alpha - the bar transparency
border - enables/disables bar borders
color - a fixed value or template for the bars color
-
padding - an object that defines padding of chart content:
width - the width of bars
radius - the radius of bar rounding
item details
label - a template for item labels
tooltip - a template for item tooltips
legend - a template for element text in the legend block
width - the block width
align - the horizontal alignment of the block: “left”, “right” or “center”
valign - the vertical alignment of the block: “top”,“bottom” or “middle”
layout - a layout that defines text stretching in horizontal or vertical direction :“x” or “y”
marker - an object that defines markers in the details block
toggle - enables/disables the possibility to hide/show a graph by clicking on the graph legend item
values - the legend items
scales
origin - the scale origin (for vertical charts).
yAxis - the vertical scale:
'Vertical Bar' and 'Stacked Vertical Bar' personality
title - the scale title
color - the scale color
start - the mininum value
end - the maximum value
step - the scale step
template - a template for scale labels
lines - enables/disables horizontal lines for scale units
'Horizontal Bar' and 'Stacked Horizontal Bar' personality
xAxis - the horizontal scale
'Vertical Bar' and 'Stacked Vertical Bar' personality
'Horizontal Bar' and 'Stacked Horizontal Bar' personality
title - (string) the scale title
color - the scale color
start - (integer) the mininum value of the scale
end - (integer) the maximum value of the scale
step - (integer) the scale's step
template - () a template for scale labels
lines - (boolean) enables/disables horizontal lines for scale units
data manipulation
group - groups data by a certain property
-