PM2011
PM2011
Maybe you can refer to the original class to make modifications https://github.com/ScottPlot/ScottPlot/blob/f1a7b316b1fae08d0ffbdb943bed987629f8bf73/src/ScottPlot5/ScottPlot5%20Controls/ScottPlot.WinForms/FormsPlotMenu.cs#L22-L48
>  You can use the following code to achieve this effect. ``` csharp myPlot.Axes.Left.MajorTickStyle.Length = 0; myPlot.Axes.Left.MinorTickStyle.Length = 0; myPlot.Axes.Left.TickLabelStyle.IsVisible = false; ```
I have found that this can be accomplished simply by reversing the Y-axis. Test based on https://scottplot.net/cookbook/5.0/PolarAxis/PolarQuickStart/ After adding `formsPlot1.Plot.Axes.InvertY();`, it looks like the following: 
like this?  https://scottplot.net/cookbook/5.0/Bar/GroupedBarPlot/
> Likewise - having the tooltip is also something I would require > > The Scenario I have is that I show a bunch of charts on a dashboard page...
@sharden This question should be closed. Because PR has been merged and the questioner has disappeared.
Look at this. use `SetLimits` https://scottplot.net/cookbook/5.0/AxisAndTicks/SetAxisLimits/ or use `SetLimitsY` https://scottplot.net/cookbook/5.0/AdvancedAxis/InvertedAxis/
@ArchieCoder Maybe it has something to do with you having more than one axis? Can you try using SetLimitsY before finally displaying the data?
@ArchieCoder Sorry, I didn't express myself clearly.😅 Use the `SetLimitsY` method only after setting the `YAxis`, as I suspect `SetLimitsY` is not applied to the plot's `YAxis`.
@ArchieCoder maybe try this. `Plot.Axes.Margins(0, 0);`