RadChart1.PlotArea.XAxis.Appearance.LabelAppearance.RotationAngle = 45
RadChart1.PlotArea.XAxis.Appearance.ValueFormat = Telerik.Charting.Styles.ChartValueFormat.LongDate
RadChart1.PlotArea.XAxis.DataLabelsColumn = "OrderDate"
RadChart1.DataSource = dtOrders
RadChart1.DataBind()
You've already probably guessed what my question is. This errors becuase I believe the OrderDate is not in the correct format and I need to us toAODate() in order to make this work. Great, how? Do I have to convert the data in the datatable with this function? How do you use it? I've looked at the microsoft page, it didn't shed any light for me.
I understand that;
Dim SomeDateAsADouble as Double
DatetoConvert as Date = Today()
SomeDateAsADouble = DatetoConvert.ToAODate()
How does this help with the above problem?
RadChart1.PlotArea.XAxis.DataLabelsColumn = "OrderDate".ToAODate() ;This won't work
Please can someone help me, and anyone after me with an explained solution. I really would appreciate it.
I have a RadPanelBar with Several GroupElements. I like the look and feel of the OutlookNavPane GroupStyle.
There are an indeterminate number of GroupElements. In the picture below(attached image1), 4 groups.
I would like to the RadPanelBar to look like this:(attached image2)
With just two groups showing, the rest minimized on the bar at the bottom. The User can achieve this y either dragging the dotted line down, or by using the Down Arrow at the bottom right, and choosing “Show Less Buttons”.
How can I do this programmatically, at Initialization time?
Also (onus Question), how do I style the top Caption bar? Is it Themable?
I am using 2009 Q3, SP1