I have the following graph, where the labels defined through a call to xticks() are not showing for scottplot, anyone knows why?
Cf. picture hereafter and corresponding code snippet
var plt2 = new ScottPlot.Plot(800, 600);
plt2.AddBar(valuesBot.ToArray(), tickPositions.ToArray(), System.Drawing.Color.Red);
plt2.AddBar(valuesTop.ToArray(), tickPositions.ToArray(), System.Drawing.Color.Green);
plt2.SetAxisLimitsY(0, 2800); //TODO: size to maximum value
plt2.XLabel("AlertTypes");
plt2.YLabel("#Occurences");
plt2.Title("Open vs Closed Alerts");
string[] ticks = alertTypesList.ToArray();
plt2.XTicks(tickPositions.ToArray());
plt2.SaveFig("AlertsReceivedAbsolute.png");
I'm not seeing the xticks defined by plt2.XTicks(tickPositions.ToArray());