Skip to content

Commit

Permalink
Update CustomStyleForBarChartComposer.swift
Browse files Browse the repository at this point in the history
  • Loading branch information
AAChartModel committed Jan 22, 2024
1 parent f6c51ca commit 9d33b59
Showing 1 changed file with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,57 +7,57 @@ import AAInfographics

class CustomStyleForBarChartComposer {
static func colorfulBarChart() -> AAChartModel {
CustomStyleForColumnChartComposer.colorfulColumnChart()
CustomStyleForColumnChartComposer.colorfulColumnChart().chartType(.bar)
}

static func colorfulGradientColorBarChart() -> AAChartModel {
CustomStyleForColumnChartComposer.colorfulGradientColorColumnChart()
CustomStyleForColumnChartComposer.colorfulGradientColorColumnChart().chartType(.bar)
}

static func discontinuousDataBarChart() -> AAChartModel {
CustomStyleForColumnChartComposer.discontinuousDataColumnChart()
CustomStyleForColumnChartComposer.discontinuousDataColumnChart().chartType(.bar)
}

static func randomColorfulBarChart() -> AAChartModel {
CustomStyleForColumnChartComposer.randomColorfulColumnChart()
CustomStyleForColumnChartComposer.randomColorfulColumnChart().chartType(.bar)
}

static func stackingPolarBarChart() -> AAChartModel {
CustomStyleForColumnChartComposer.stackingPolarColumnChart()
CustomStyleForColumnChartComposer.stackingPolarColumnChart().chartType(.bar)
}




static func specialStyleForTheSingleDataElementOfBarChart() -> AAChartModel {
CustomStyleForColumnChartComposer.specialStyleForTheSingleDataElementOfColumnChart()
CustomStyleForColumnChartComposer.specialStyleForTheSingleDataElementOfColumnChart().chartType(.bar)
}

static func noMoreGroupingAndOverlapEachOtherBarChart() -> AAChartModel {
CustomStyleForColumnChartComposer.noMoreGroupingAndOverlapEachOtherColumnChart()
CustomStyleForColumnChartComposer.noMoreGroupingAndOverlapEachOtherColumnChart().chartType(.bar)
}

static func noMoreGroupingAndNestedBarChart() -> AAChartModel {
CustomStyleForColumnChartComposer.noMoreGroupingAndNestedColumnChart()
CustomStyleForColumnChartComposer.noMoreGroupingAndNestedColumnChart().chartType(.bar)
}

static func topRoundedCornersStackingBarChart() -> AAChartModel {
CustomStyleForColumnChartComposer.topRoundedCornersStackingColumnChart()
CustomStyleForColumnChartComposer.topRoundedCornersStackingColumnChart().chartType(.bar)
}

static func freeStyleRoundedCornersStackingBarChart() -> AAChartModel {
CustomStyleForColumnChartComposer.freeStyleRoundedCornersStackingColumnChart()
CustomStyleForColumnChartComposer.freeStyleRoundedCornersStackingColumnChart().chartType(.bar)
}




static func customBorderStyleAndStatesHoverColorBarChart() -> AAChartModel {
CustomStyleForColumnChartComposer.customBorderStyleAndStatesHoverColorColumnChart()
CustomStyleForColumnChartComposer.customBorderStyleAndStatesHoverColorColumnChart().chartType(.bar)
}

static func negativeDataMixedPositiveDataBarChart() -> AAChartModel {
CustomStyleForColumnChartComposer.negativeDataMixedPositiveDataColumnChart()
CustomStyleForColumnChartComposer.negativeDataMixedPositiveDataColumnChart().chartType(.bar)
}

}

0 comments on commit 9d33b59

Please sign in to comment.