This is a migrated thread and some comments may be shown as answers.

PanZoomBarStyle in RadCartesianChart

1 Answer 101 Views
Chart
This is a migrated thread and some comments may be shown as answers.
Lee
Top achievements
Rank 1
Lee asked on 09 May 2014, 01:51 PM
My code is below that

public class MultiVerticalAxisConverter : IMultiValueConverter
{
   NumericalAxis verticalAxis = null;
   LinearAxis axis = new LinearAxis();

   ....

   //axis.PanZoomBarStyle
   // About SelectedStart & End Setting

   verticalAxis = axis;

   return verticalAxis;
}

I want to set when created verticalAxis.

Such as below .xaml code.

                        <Style TargetType="telerik:PanZoomBar">
                            <Setter Property="SelectionStart" Value="{Binding Ribbon.ZoomData, Mode=TwoWay}"/>
                            <Setter Property="SelectionEnd" Value="{Binding .Ribbon.ZoomData, Mode=TwoWay}"/>
                            <Setter Property="Visibility" Value="Collapsed"/>
                        </Style>

What should I do?

1 Answer, 1 is accepted

Sort by
0
Pavel R. Pavlov
Telerik team
answered on 12 May 2014, 08:48 AM
Hi Lee,

I am not sure that I understand your scenario and your question. Could you please be more specific and elaborate more on your scenario? Are you trying to set the vertical axis of the RadChartView control or you try to bind the SelectionStart and SelectionEnd properties to the axis?

Regards,
Pavel R. Pavlov
Telerik
 
Check out Telerik Analytics, the service which allows developers to discover app usage patterns, analyze user data, log exceptions, solve problems and profile application performance at run time. Watch the videos and start improving your app based on facts, not hunches.
 
Tags
Chart
Asked by
Lee
Top achievements
Rank 1
Answers by
Pavel R. Pavlov
Telerik team
Share this question
or