Summ:  Fields Constr. Methods    Details:  Constr. Methods      Class:  Prev Next
com.artfulbits.aiCharts.Types
Class ChartStackedBar100Type

java.lang.Object com.artfulbits.aiCharts.Base.ChartType com.artfulbits.aiCharts.Types.ChartStackedColumnType com.artfulbits.aiCharts.Types.ChartStackedBarType com.artfulbits.aiCharts.Types.ChartStackedBar100Type

Declaration: public class ChartStackedBar100Type extends ChartStackedBarType

 

TODO Represents Stacked Bar chart type. A stacked bar chart displays multiple series stacked on top of one another horizontally.Using a stacked bar chart is an effective way to present the absolute values of data points represented by the segments of each bar, as well as the total value represented by data points from each series stacked in a bar.
 // Creating series.
 ChartSeries series1 = new ChartSeries("Series 1", ChartTypes.StackedBar);
 ChartSeries series2 = new ChartSeries("Series 2", ChartTypes.StackedBar);
 // Filling series with 10 data points.
 for(int i = 0; i < 10; i++)
 {
 	series1.getPoints().addXY(i, Math.abs(Math.cos(i)));
 	series2.getPoints().addXY(i, Math.abs(Math.sin(i)));
 }
 
* Similar output should be expected:

Stacked bar type uses YValue type to determine index of corresponding Y value among chart point's Y values.

 

Since: 1.5.0.2

 

 

Fields Summary

 

Fields inherited from class: com.artfulbits.aiCharts.Types.ChartStackedColumnType
STACK_GROUP

 

Fields inherited from class: com.artfulbits.aiCharts.Base.ChartType
POINT_WIDTH

 

 

Constructors Summary
ChartStackedBar100Type()
    
Sole constructor.

 

 

Methods Summary
java.lang.String getName()
    
Provides human-readable representation of this chart type.
boolean isStacked100()
    
Indicated whether this type is stacked to percentage relationship.

 

Methods inherited from class: com.artfulbits.aiCharts.Types.ChartStackedBarType
isRotated

 

Methods inherited from class: com.artfulbits.aiCharts.Types.ChartStackedColumnType
draw, isOriginDependent, isSideBySide, isStacked

 

Methods inherited from class: com.artfulbits.aiCharts.Base.ChartType
colorPerPoint, computeXRange, computeYRange, drawMarkers, getRequiredCoordinateSystem, getRequiredUsages, getXRange, getYRange, isCompatible, isCompatible

 

Methods inherited from class: java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

 

 

 

 

ChartStackedBar100Type

 

public ChartStackedBar100Type( )

 

Sole constructor. (For invocation by subclass constructors, typically implicit.)

 

 

 

 

isStacked100

 

public boolean isStacked100( )

 

[ description from ChartType.isStacked100() ]
 
Indicated whether this type is stacked to percentage relationship. Series are stacked on top of each other, adding up to 100%. Each series' segment represents the percentage that the value contributes to the sum of the values for that category.

 

Returns:
true is this chart type is 100% stacked, otherwise false.

 

Overrides: ChartType.isStacked100()

 

 

 

getName

 

public java.lang.String getName( )

 

[ description from ChartType.getName() ]
 
Provides human-readable representation of this chart type.

 

Returns:
instance of

 

Overrides: ChartStackedBarType.getName()

 

 

© 2005 - 2010 ArtfulBits. All rights reserved.