| $("#container").ejChart({ primaryYAxis: { Specify the range for the vertical axis, so that we can render the labels with respect to the labels range: { min: 0, max: 5, interval: 1 }, }, axesLabelRendering: function (args) { if (args.data.axis.orientation === "vertical" && args.data.axis.title.text === "Category Y Axis") { //You can customize the text based on your requirement var categoryValues = ["X1", "X2", "X3", "X4", "X5", "X6"]; args.data.label.Text = categoryValues[count]; count++; } else count = 0; }, |