Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
466
How can I inverse Axis-Y?
posted

I want to make chart like chart in attached files (max value on Y-Axis in the bottom, and min value on Y-Axis int the top. I have no idea how realize it whith xamChart :(. Could you help me?

Thanks.

Parents
No Data
Reply
  • 816
    posted

    Hi,

    I don't think xamWebChart supports axis inversion; perhaps you should try using xamDataChart.  In the xamDataChart namespace (Infragistics.Controls.Charts), you'll find that the Axis class has an "IsInverted" property that will allow you to invert the axis.

    Ex:

    <ig:NumericYAxis x:Name="xmYAxis" IsInverted="True" >
                        <ig:NumericYAxis.LabelSettings >
                            <ig:AxisLabelSettings Location="OutsideLeft" Extent="55" />
                        </ig:NumericYAxis.LabelSettings>
                    </ig:NumericYAxis>
    

    Let me know if you run into any trouble.

Children