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

AdditionalYAxes position

6 Answers 91 Views
Chart (HTML5)
This is a migrated thread and some comments may be shown as answers.
moegal
Top achievements
Rank 1
moegal asked on 13 Mar 2013, 12:56 PM
Hi,

I want to move my AdditionalYAxes scale to the right?  I see Position="Right" under TitleAppearance but it doesn't have the desired effect..

I want to keep the standard yaxis on the left.

Thanks, Marty 

6 Answers, 1 is accepted

Sort by
0
Tom
Top achievements
Rank 1
answered on 13 Mar 2013, 01:39 PM
I need to do the same.
0
Danail Vasilev
Telerik team
answered on 14 Mar 2013, 02:57 PM
Hello Guys,

I am sorry to say that it is not possible to move the additional YAxes in RadHtmlChart yet. This is also mentioned in Known Limitations help article.

However this feature has been logged as a PITS item here, so that you can monitor its progress and comment on it. For the time being you can raise its priority by voting on it.

Kind regards,
Danail Vasilev
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.
0
Yuri Zhitnitsky
Top achievements
Rank 1
answered on 17 Dec 2013, 05:35 PM
If I understood correctly, look like Issue Tracker says that this issue was resolved. Can you provide details on how to move AdditionalYAxes scale to the right. Thanks.
0
Danail Vasilev
Telerik team
answered on 19 Dec 2013, 02:42 PM
Hi Yuri,

It seems that the status of this item has been set to resolve earlier, so that I set it back to "In Progress". The good news, however, is that our developers are working on this improvement now, so that if everything is fine it will be available in Q1 2014, scheduled for the middle of February.

Regards,
Danail Vasilev
Telerik
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 the blog feed now.
0
Yuri Zhitnitsky
Top achievements
Rank 1
answered on 28 Jan 2014, 06:39 PM
Is this issue resolved in this latest release 2013.3.1324 on Jan 28 2014? Link above (issue 13145) no longer working, so we cannot see the status of this issue. Thanks.
0
Danail Vasilev
Telerik team
answered on 30 Jan 2014, 04:04 PM
Hello Yuri,

As I have already mentioned in my previous post this improvement will be implemented in Q1 2014, scheduled for the end of February. As for the PITS item you are right that it is not available anymore. I have created a new item in our feedback portal here, so that you can track its progress there.

For the time being you can set the property through the chartObject. For example:
JavaScript:
<script>
    function pageLoad() {
        var chart = $find("<%=RadHtmlChart1.ClientID%>");
        chart._chartObject.options.categoryAxis.axisCrossingValue = [0, 3];
        chart.repaint();
    }
</script>
where 0 and 3 are the x-axis' crossing points for the y-axes.
ASPX:
<telerik:RadHtmlChart ID="RadHtmlChart1" runat="server" Width="600px" Height="400px">
    <PlotArea>
        <Series>
            <telerik:ColumnSeries AxisName="axis1">
                <SeriesItems>
                    <telerik:CategorySeriesItem Y="30" />
                    <telerik:CategorySeriesItem Y="20" />
                    <telerik:CategorySeriesItem Y="10" />
                </SeriesItems>
            </telerik:ColumnSeries>
            <telerik:ColumnSeries AxisName="axis2">
                <SeriesItems>
                    <telerik:CategorySeriesItem Y="3100" />
                    <telerik:CategorySeriesItem Y="2700" />
                    <telerik:CategorySeriesItem Y="1400" />
                </SeriesItems>
            </telerik:ColumnSeries>
        </Series>
        <XAxis AxisCrossingValue="2">
            <Items>
                <telerik:AxisItem LabelText="item 1" />
                <telerik:AxisItem LabelText="item 2" />
                <telerik:AxisItem LabelText="item 3" />
            </Items>
        </XAxis>
        <YAxis Name="axis1">
        </YAxis>
        <AdditionalYAxes>
            <telerik:AxisY Name="axis2"></telerik:AxisY>
        </AdditionalYAxes>
    </PlotArea>
</telerik:RadHtmlChart>



Regards,
Danail Vasilev
Telerik
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 UI for ASP.NET AJAX, subscribe to the blog feed now.
Tags
Chart (HTML5)
Asked by
moegal
Top achievements
Rank 1
Answers by
Tom
Top achievements
Rank 1
Danail Vasilev
Telerik team
Yuri Zhitnitsky
Top achievements
Rank 1
Share this question
or