private void ChangeToStackedColumn100() { if (ChartType != BarChartType.StackedColumn100) { ChartType = BarChartType.StackedColumn100; } }
private void ChangeToStackedColumn() { if (ChartType != BarChartType.StackedColumn) { ChartType = BarChartType.StackedColumn; } }
private void ChangeToColumn() { if (ChartType != BarChartType.Column) { ChartType = BarChartType.Column; } }
private void ChangeToStackedBar() { if (ChartType != BarChartType.StackedBar) { ChartType = BarChartType.StackedBar; } }
private void ChangeToBar() { if (ChartType != BarChartType.Bar) { ChartType = BarChartType.Bar; } }
public GoogleBarChart Type(BarChartType type) { _type = type; return(this); }