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

Rad Chart Y Axis Mark

1 Answer 40 Views
Chart (Obsolete)
This is a migrated thread and some comments may be shown as answers.
Viky
Top achievements
Rank 1
Viky asked on 26 Jul 2012, 09:26 AM
Hello Sir/Mam

I am getting a issues on Radchart control.
I want to change y axis mark point into reverse direction.

Please find the attachment and review this.

Please let me know that how we do this in Rad Chart


Thanks
Viky

1 Answer, 1 is accepted

Sort by
0
Tsvetie
Telerik team
answered on 31 Jul 2012, 02:31 PM
Hi Viky,

In case I understand you correctly, you want to visualize the major ticks on the inner side of the axis. Please correct me if I am wrong. If this is the case, you can use the following approach:

<telerik:RadChart ID="RadChart1" runat="server" Width="480px" Height="290px">
    <PlotArea>
        <XAxis>
            <Appearance MajorTick-Length="-12">
                <MajorGridLines Visible="False" />
                <MinorGridLines Visible="false" />
            </Appearance>
        </XAxis>
        <YAxis>
            <Appearance MajorTick-Length="-12">
                <MajorGridLines Visible="False" />
                <MinorGridLines Visible="false" />
            </Appearance>
        </YAxis>
        <YAxis2>
            <Appearance MajorTick-Length="-12">
                <MajorGridLines Visible="False" />
                <MinorGridLines Visible="false" />
            </Appearance>
        </YAxis2>
    </PlotArea>
Kind regards,
Tsvetie
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
Tags
Chart (Obsolete)
Asked by
Viky
Top achievements
Rank 1
Answers by
Tsvetie
Telerik team
Share this question
or