RCHART for .NET, User Guide

Copyright 2005, J4L Components (http://www.java4less.com)
Go bak to contents


RChart , The layout

Chart's layout

Charts are made of the following 6 areas (See example):

The previous example was created with the following parameters:

 
Parameters
Description
Equivalent c# class/property
  LEFT_MARGIN=0.18
RIGHT_MARGIN=0.1
TOP_MARGIN=0.1
BOTTOM_MARGIN=0.1
LEGEND_MARGIN=0.2
LEGEND_POSITION=BOTTOM
LEGEND=FALSE
18 % of the width (default is 12.5%)
10 % of the width (default is 12.5%)
10 % of the height (default is 12.5%)
10 % of the height
(default is 12.5%)
20 % of the height (default)
Legend is at the bottom (default is RIGHT)
Do not display legend, leave space empty (default is TRUE)

Chart.leftMargin=0.18;
Chart.rightMargin=0.1;
Chart.topMargin=0.1;
Chart.bottomMargin=0.1;
Chart.legendMargin=0.2;
Chart.layout =Chart.LAYOUT_LEGEND_BOTTOM;
Chart.legend=null;

 

A margin of 0.18 means 18% of the width (or height) of the chart.

The space reserved for the axis is divided in 2 areas of equal size:

if you are using a second Y2 axis, there is an additional parameter:

Parameters
Description
Equivalent c# class/property
CHART_SECOND_AXIS_MARGIN=0.05 5 % of the width

Chart.secondYAxisMargin=0.05;

That is the blue rectangle in the screenshot. This parameter is normally set to 0 (default).

 

The title

As already stated, the title is painted in the area reserved by the top margin parameters. The following parameters control the title:

Parameters
Description
Equivalent c# class/property
TITLECHART=Sales 1999 \n An overview
TITLE_FONT=Dialog|BOLD|12 TITLE_COLOR=GREEN
Text of the title, you can use "\n" to create a new line.
Font of the title.
Color of the text.

Chart.title= new Title("Sales 1999 \\n An overview");

Chart.title.font=new Font(new FontFamily("Dialog"),12);
Chart.title.color=Color.Green;

The result of the above parameters is:

 

The Legend

The legend is the small box next to the chart that describes the content of the chart. The legend is placed in the space reserved by LEGEND_MARGIN and at the position specified by LEGEND_POSITION which can be TOP, BOTTOM or RIGHT.

Parameters
Description
Equivalent c# class/property
LEGEND_FILL=WHITE
LEGEND_COLOR=0xff LEGEND_FONT=Dialog|ITALIC|10 LEGEND_VERTICAL=FALSE LEGEND_BORDER=1|ff|NORMAL LEGEND_POSITION=TOP LEGEND_MARGIN=0.12
Background color of the legend
Color of the font
Font
Layout of the legend (vertical or horizontal)
Style of the line of the border
Position
Reserved area

Chart.legend.background=new FillStyle(Color.White);
Chart.legend.color=Color.Blue;
Chart.legend.color=new Font(new FontFamily("Dialog"),10);
Chart.legend.verticalLayout=false;
Chart.legend.border=new LineStyle(1,Color.Blue,LineStyle.NORMAL);
Chart.layout =Chart.LAYOUT_LEGEND_TOP;
Chart.legendMargin=0.12;

The result of the above parameters is: