I use the latest xChart Class: Version 2.6 2018.11.04 for BAR chart, but could not locate the 2 below needs in the Class module:
When it displays the mean value, can I display the mean value by formatting it to show say 1 decimal instead of 5: ex: show 1.7 instead of 1.666672.
2. When there are several x values to plot, the x axis gets cluttered. The way I do it is to skip x values my using the Mod operator to show every other x value. Is there a way to make every other or every n X values visibility false to unclutter the X axis
Thank you
- For a BAR graph, I use the following to add a mean y value line:
B4X:
chart.IncludeBarMeanLine=True
chart.MeanLineColor=Colors.DarkGray
2. When there are several x values to plot, the x axis gets cluttered. The way I do it is to skip x values my using the Mod operator to show every other x value. Is there a way to make every other or every n X values visibility false to unclutter the X axis
Thank you