Configuration properties are set in the chart constructor. Some of them are mandatory, others - optional.
var radarChart =  new dhtmlXChart({
    view:"radar",
    container:"chart_container",
    value:"#sales#"
})
 
 container - the id of an html container where you want display the chart
 
 
- 
 
 value - a property of dataset that chart represents
 
 
 
look and fill
 
 alpha - the chart area transparency. Has sense only if the  
fill property is enabled
 
 
- 
 
 disableItems - disables items markers. Has sense only if the  
fill property is enabled
 
 
 fill - fills the chart area with the specified background color
 
 
 padding - an object that defines padding of chart content:
 
 
- 
 color - the line color
 
 width - the line width
 
 
- 
 borderColor - the outer color of a point
 
 borderWidth - the width of border lines
 
 color - the inner color of a point
 
 radius - the item radius
 
 type - the shape of points
 
 
item details
 tooltip - a template for item tooltips
 
 
 legend - a template for element text in 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”
 
 padding - the legend block padding
 
 margin - the legend block margin
 
 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
 xAxis - the horizontal scale
 
 
 yAxis - the vertical scale
 
 start - the mininum scale value
 
 end - the maximum scale value
 
 step - the scale step
 
 template - a template for scale markers. By default, it is defined by the 'start', 'step' and 'end' attributes
 
 lineShape - the type of lines: 'line' or 'arc'
 
 lineColor - the color of scale arcs
 
 
data manipulation
 group - groups data by a certain property
 
 
-