or

_loadAppointment:function(g){var f=new b.SchedulerAppointment();f._id=g.ID;f._internalID=g.EncodedID;f.set_subject(g.Subject);f.set_description(g.Description);----->f.set_start(this._toClientDate(g.Start));<----f.set_end(this._toClientDate(g.End));f._setOwner(this._owner);f._recurrenceRule=g.RecurrenceRule;f._recurrenceParentID=g.RecurrenceParentID;f._recurrenceState=g.RecurrenceState;f._visible=g.Visible;f.set_toolTip(g.Subject);<asp:Repeater runat="server" ID="rptChildren"><ItemTemplate> <div class="passenger"> <div class="info"> <span class="inputTitle">Birthdate</span> <telerik:RadDatePicker ID="dtChildBirthDate" runat="server" Width="150px" MinDate="1/1/1910"></telerik:RadDatePicker> </div> </div></ItemTemplate></asp:Repeater>| <AlternatingItemStyle BackColor="#CCFFCC" Height="1px" Font-Size="XX-Small" ForeColor="#339933" /> |
| <ItemStyle Height="50px" /> |

I've tried using the following code to change the colour of one of the series areas and it doesn't work.
ChartSeriesType
chartType = aPercentage ? ChartSeriesType.StackedArea100 : ChartSeriesType.Area;
ChartSeries
freeSeries = new ChartSeries("Series 1", chartType);
freeSeries.Appearance.LegendDisplayMode =
ChartSeriesLegendDisplayMode.SeriesName;
freeSeries.Appearance.FillStyle.MainColor =
Color.Green;
I've also tried doing the following, and this doesn't work either:
ChartSeriesItem
free = new ChartSeriesItem(cd.FreeEntry);
free.Label.Visible =
false;
free.Appearance.FillStyle.MainColor =
Color.Green;
freeSeries.AddItem(free);
Please could someone point me in the right direction.
Many thanks, Craig.
