This question is locked. New answers and comments are not allowed.
Hi,
i have two StackedGroup BarSeries and i want that both have the same color. Like you can see in the picture i want that the right bar should have the same Colors like the left one also blue and yellow.
thats my Code:
<chart:RadCartesianChart Grid.Row="1" x:Name="CategoryChart" PaletteName="DefaultLight">for (var i = 0; i < knowledgeTable.KnowledgesesList.Count; i++) { var categorySeries = new BarSeries { LegendTitle = knowledgeTable.KnowledgesesList.ElementAt(i).SeriesName, ShowLabels = false, PaletteMode = SeriesPaletteMode.Series, CombineMode = ChartSeriesCombineMode.Stack, StackGroupKey = "Main" };for (var i = 0; i < knowledgeTable.KnowledgesesList.Count; i++) { var categorySeries = new BarSeries { LegendTitle = knowledgeTable.KnowledgesesList.ElementAt(i).SeriesName, ShowLabels = false, CombineMode = ChartSeriesCombineMode.Stack, StackGroupKey = "Comp" };