Hi everyone!.Is it possible to hide the bottom line?
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 = falsechart.Axis.Y.MajorGridlines.Visible = falseFor composite charts, you have to do this on the axis object that you created.AxisItem.MajorGridlines.Visible = false