So I'm pretty new to vb.net and I'm working on creating a report generator that will display a chart. The purpose of it is to display what defect codes have been reported in the last month and how many times each has been reported. These codes are just integers, there's no perceivable increment to them and there can theoretically be infinitely many defect codes reported in any given month.
My issue is the X-axis (the axis which the codes populate) doesn't show just the defect codes that have been reported that month like I want. Rather, it increments up in even amounts and just sticks the bars that show the # of occurrences wherever they fit within the increments.
To get to the core of my question, is it possible for me to display just these erratic codes? For example, to have the first value on the axis be "2," the second "18," and the third "41"? Or can axes only be created in even intervals?
Any help would be greatly appreciated.