Hi All,
I am using CDXYChartMBS plugins to draw the chart bar.
X - Coordinates: ("0", "10", "20", "30", "35", "50", "65","70", "80", "90", "100")
Y - Coordinates: V, X, Y, Z
Please refer the below screenshot. One tweak is after 30 of x- coordinates next values are 35, 50 and 65. After 65 again x- coordinates are starting from 70, 80 and so on.
Below line of code and data i am using to draw the Y-Coordinates :
data: array(12.0, 38, 32, 35)
V: 32
X: 35
Y: 38
Z: 12
call c.addBarLayer(data, colors).setBorderColor(CDXYChartMBS.kTransparent, CDXYChartMBS.barLighting(0.15, 1.0))
However, the x-coordinates chart bar is not displaying correctly in the graph.

Here the sample code for adding three custom lines:
// The data for the bar chart
dim data(-1) as double = array(85.0, 156, 179.5, 211, 123)
// The labels for the bar chart
dim labels(-1) as string = array("Mon", "Tue", "Wed", "Thu", "Fri")
// Create a XYChart object of size 250 x 250 pixels
dim c as new CDXYChartMBS(250, 250)
// Set the plotarea at (30, 20) and of size 200 x 200 pixels
call c.setPlotArea(30, 20, 200, 200)
// Add a bar chart layer using the given data
Call c.addBarLayer(data)
// Set the labels on the x axis.
Call c.xAxis.setLabels labels
Dim NoLabels() As String
Call c.yAxis.setLinearScale 0, 250, NoLabels
// add custom labels
Call c.yAxis.addLabel(120, "120")
Call c.yAxis.addLabel(35, "35")
Call c.yAxis.addLabel(65, "65")
Backdrop=c.makeChartPicture