Anyone has any suggestion? where to obtain the source code? who's style shoule I mess with? DragZoomLayerControl?
7 Answers, 1 is accepted


I found the solution on resize the zoomscroll bar though. I still have a questoin regarding the data that send to the chart.
As I mentioned last post the datetime has trouble to resize, I found out that it is not the datetime at all, it is the data that I pass in.
<
telerik:SeriesMapping.ItemMappings >
<telerik:ItemMapping DataPointMember="XValue" FieldName="TimeStamp" />
<telerik:ItemMapping DataPointMember="YValue" FieldName="myData.doubleValue" />
</telerik:SeriesMapping.ItemMappings>
The data above will have problem to resize as it will do data re-sample at behind, where the operation directly on myData is not available as myData is a class. If I change my plot data structure to have directly properties called TimeStamp and doubleValue. then set them like:
<telerik:SeriesMapping.ItemMappings >
<telerik:ItemMapping DataPointMember="XValue" FieldName="TimeStamp" />
<telerik:ItemMapping DataPointMember="YValue" FieldName="doubleValue" />
</telerik:SeriesMapping.ItemMappings>
then it works fine. So the FieldName can not set to be at sub-level like in the first code sample?
Please excuse us for the delay of our answer. Please expect my reply soon.
Best wishes,
Sia
the Telerik team
Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get it now >>
Can you please let us know which is the version of RadControls that you use in your application?
All the best,
Sia
the Telerik team
Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get it now >>

I need to know before I change my data structure.

Please excuse us for the late reply. Attached you can find a sample project with all needed resources. You can reduce them according to the changes you will make.
All the best,
Sia
the Telerik team
Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get it now >>