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
65
Lines of the axes of ultra chart
posted

Hi everyone!.

Is it possible to hide the bottom line?

Parents
No Data
Reply
  • 26458
    Offline posted

    By "bottom lines" do you mean the gridlines? That mostly depends on how you set up your chart. If it's not a composite chart, you can turn the gridlines off using
    chart.Axis.X.MajorGridlines.Visible = false
    chart.Axis.Y.MajorGridlines.Visible = false

    For composite charts, you have to do this on the axis object that you created.
    AxisItem.MajorGridlines.Visible = false

Children
No Data