chart = createStackedXYBarChart(computeTitle(), getDomainTitle(), false, getRangeTitle(),
convertToTable(xySeriesCollection), orientation, isShowLegend(), false, false);
}
else if (isStacked() && xyDataset instanceof TableXYDataset)
{
final TableXYDataset dataset = (TableXYDataset) xyDataset;
chart = createStackedXYBarChart(computeTitle(), getDomainTitle(), false, getRangeTitle(),
dataset, orientation, isShowLegend(), false, false);
}
else
{