5 Answers, 1 is accepted
0
Hi Paolo,
Could you please be more specific on your requirement as it is unclear to me? Timebar control doesn't have the vertical axis which is shown on your image.
Greetings,
Evgenia
the Telerik team
Explore the entire Telerik portfolio by downloading Telerik DevCraft Ultimate.
0
Michele
Top achievements
Rank 2
answered on 14 Nov 2012, 09:51 AM
Excuse me,
I've a radchart inside the RadTimeBar... I need to set a foreground to those lines...
Thanks
I've a radchart inside the RadTimeBar... I need to set a foreground to those lines...
Thanks
0
Hi Paolo,
Evgenia
the Telerik team
You may review this help topic where it is described together with example how you may use styles to change the default appearance of the Axis Ticks.
Regards,Evgenia
the Telerik team
Explore the entire Telerik portfolio by downloading Telerik DevCraft Ultimate.
0
Michele
Top achievements
Rank 2
answered on 16 Nov 2012, 09:52 AM
I've searched in your RadChartStyle.Xaml but I've not found any AxisYMinorTickStyle...of which part is it of?
Thanks
Paolo
Thanks
Paolo
0
Hi Paolo,
There is no need to search for the original AxisYMinorTickStyle. Just place your new style in UserControl.Resources for example and tell the corresponding chart element to use it. As shown in the help topic that my colleague Evgenia provided in the previous post, by placing this:
in your resources, and then telling the Y axis to use it for its minor ticks:
you will get orange minor ticks.
I hope this helps.
All the best,
Petar Kirov
the Telerik team
There is no need to search for the original AxisYMinorTickStyle. Just place your new style in UserControl.Resources for example and tell the corresponding chart element to use it. As shown in the help topic that my colleague Evgenia provided in the previous post, by placing this:
<
Style
x:Key
=
"AxisYMinorTickStyle"
TargetType
=
"Line"
>
<
Setter
Property
=
"Stroke"
Value
=
"Orange"
/>
</
Style
>
this
.radChart.DefaultView.ChartArea.AxisY.AxisStyles.MinorTickLineStyle =
this
.Resources[
"AxisYMinorTickStyle"
]
as
Style;
I hope this helps.
All the best,
Petar Kirov
the Telerik team
Explore the entire Telerik portfolio by downloading Telerik DevCraft Ultimate.