Tutorial - Simple Chart
1
Add a container to  define the width of the chart.
2
Select the chart. For this example we will use the column chart. Drag and drop the chart to the container.
3
To feed the chart with date we must provide in the parameter of the chart the source data point list. To do that we have to put a record list in the preparation. Right click in the HomePage to show the context menu. Choose add preparation.
4
For this example we will use the Product entity. In the preparation action drag the entity Product to the flow of the preparation. Double click on the Aggregate, choose filters and add this condition: Product.ProductTypeId=Entities.ProductType.Electronics
5
Finally all we need is to connect the chart to record list of the preparation. Select the arrow in the source data point list and then choose GetPopulation Query. Don't forget the fill the parameters label and the value.
6
See the result of this tutorial
The next steps are only needed if you want to know how the remaining parameters works

StackingType 
To create a stacked column you just need to select the stackingtype parameter and choose either if you want to show their percentage in a total(Stacked100Percent) or to show their contribution to a total (Stacked). 

 

 
Height 
In the Height parameter you can define the vertical size of the chart in pixels (300 by default).  The horizontal size of the chart is the parent’s width.

 
LegendPosition 
The position where the legend is displayed on the chart ('Bottom' by default). The legend is hidden if no series name is set in any data point.
XAxisFormat 
This parameter only change X-axis area. Action XAxisFormat_Init helps to create and initialize this parameter. For example try to replicate the next image in your application to see the result.

YAxisFormat 
Following the same behavior but with a different action name (YAxisFormat_Init) you can achieve the same results but in the Y-axis area.
ChartFormat 
This is regarding the formatting options for the chart. The action ChartFormat_Init helps to create and initialize this parameter. 
Clickable 
You can turn on the clicking action on plotted values. This is very helpful to apply a drilldown effect to the chart.
Click here to see your activities