or
I'm having a little issue I can't seem to figure out. I have a bar chart with 2 series that I am adding programmatically. I’m using the vista skin and when the chart renders the first series bar has a black border but the second series doesn’t.
I can’t find how to turn the border off for the first series. Any suggestions would be appreciated.
someComboBox.DataSource = GetDataList();someComboBox.DataBind();someComboBox.ClearSelection();someComboBox.Text = string.Empty;someComboBox.SelectedValue = valueFromUrlParameter;someComboBox.DataSource = GetDataList();someComboBox.DataBind();someComboBox.ClearSelection();someComboBox.Text = string.Empty;someComboBox.SelectedValue = valueFromUrlParameter;
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="server"> <telerik:RadScheduler ID="RadScheduler1" runat="server" EnableEmbeddedSkins="false" Skin="MPower" ReadOnly="true" DataKeyField="AppointmentID" DataSubjectField="Subject" DataStartField="Start" DataEndField="End" DataRecurrenceField="RecurrenceRule" DataRecurrenceParentKeyField="RecurrenceParentID" width="750px" DayStartTime="08:00:00" DayEndTime="20:00:00" TimeZoneOffset="03:00:00" > </telerik:RadScheduler> </asp:Content>AppointmentCollection appointments = new AppointmentCollection(); this.RadScheduler1.DataSource = appointments.GetAppointmentsByDate("08/19/2011");Telerik.Web.UI.RadScheduler._preInitialize("ctl00_ContentPlaceHolder1_RadScheduler1",0,0,1,false);