I have data called BookedHours and it is hours that are booked in a day.
Each day's booked hours is totaled from another field called WorkType.
For example, today there are 40 booked hours, 8 of which are vacation, 16 are labor, and 16 are holiday.
I want to have a column that displays the total 40 booked hours in the day, but I want the stacked columns to display the data split up. Following the same example above, 8 hours of the column for today is vacation (colored red), 16 hours stacked on top of that in the same column is labor (colored blue), etc...
I have tried sooo much to get this to work and I can't figure out a way to group the data into a column like that. Here is the HTML code I have:
Thanks!
Each day's booked hours is totaled from another field called WorkType.
For example, today there are 40 booked hours, 8 of which are vacation, 16 are labor, and 16 are holiday.
I want to have a column that displays the total 40 booked hours in the day, but I want the stacked columns to display the data split up. Following the same example above, 8 hours of the column for today is vacation (colored red), 16 hours stacked on top of that in the same column is labor (colored blue), etc...
I have tried sooo much to get this to work and I can't figure out a way to group the data into a column like that. Here is the HTML code I have:
<telerik:RadHtmlChart ID="RadHtmlChartInstall" runat="server" DataSourceID="odsChart1">
<PlotArea>
<Series>
<telerik:ColumnSeries DataFieldY="BookedHours" GroupName="WorkType" Stacked="true">
<LabelsAppearance Visible="false"></LabelsAppearance>
</telerik:ColumnSeries>
</Series>
<XAxis DataLabelsField="Day">
<TitleAppearance Text="Day">
<TextStyle Margin="5" Color="Black" Bold="true" />
</TitleAppearance>
<MajorGridLines Visible="false" />
<MinorGridLines Visible="false" />
<LabelsAppearance RotationAngle="270" Color="Black" />
</XAxis>
<YAxis>
<TitleAppearance Text="Booking Time">
<TextStyle Margin="5" Color="Black" Bold="true" />
</TitleAppearance>
<MinorGridLines Visible="false" />
<LabelsAppearance>
<TextStyle Margin="3" Color="Black" />
</LabelsAppearance>
</YAxis>
</PlotArea>
<Legend>
<Appearance Position="Bottom">
<TextStyle Color="Black" />
</Appearance>
</Legend>
</telerik:RadHtmlChart>
Thanks!