Long data points captions

I have quite long data points text sometimes and it doesn’t fit into the space allocated in horizontal bar chart: .
Is there a way to:

  1. increase space for the Y-axis to accommodate longer captions
  2. Change the styling of the text to match the rest of the page.

Many thanks,
Sergei

Use padding:{left: 150} in chart config. I.e.

barChart1 = new dhtmlXChart({ view:"bar", container:"chart1", value:"#sales#", barWidth:35, radius:0, padding:{left: 150}, xAxis:{template:"#year#"}, yAxis:{start:0, end:100, step:20} })

great thanks very much

You are welcome!