Check the preview at http://www.rcuela.com/projects/3dBar/
You can configure faster the chart directly from XML file. You don’t need ActionScript knowlegde to implement, just add these lines:
//import the Bars chart class import com.rcuela.charts.VerticalBarsChart3D; //declaring and instantiating a new 3D Bars Chart var chart:VerticalBarsChart3D = new VerticalBarsChart3D(xmlPath); //Adding the chart to the Stage this.addChild(chart);
Config part
Chart Area:
- x, y position
- width and height of chart
- depth
- colors for the chart area background (2)
- horizontal margin
- color, thickness and alpha for border
Y Axis:
- Font size and color
- Margin from the axis
- Minimum and maximum values
- Number of intervals
- Decimals
X Axis
- Font size and color
- Margin for tags
- Margin for periods
- Margin for bars
Gridlines
- thickness
- color
- alpha
Legends
- visible
- x, y position
- width (height is calculated automatically)
- square wide for labels
- Size and color for texts
- background color, alpha,
- color, thickness and alpha for border
- color for mouse over event
Tooltip
- font size
- horizontal and vertical margin
Animation
- time for openning.
- synchronized or not.
Texts part
Add the paragraphs as you want. Define for each paragraph:
- alignment
- font weight
- font color
- font size
- x, y position
- width (height is calculated automatically)
- text.
Series part
Add the series as you want and define for each one:
- name
- gradient colors for bars, just add the lighter and darker color, the app makes the rest.
- tooltip back and text color.
Periods part
Add the periods as you want. For each period you can set the name and the values for series.














































