Changing the row height

The height of the rows in a Chart can be controlled by setting the rowHeight property on the ChartConfig.

let chart = new soda.Chart({
  selector: "#soda-chart",
  axis: true
  rowHeight: 20,
});

let ann: Soda.Annotation = soda.generateAnnotations({
  n: 10
})

chart.render({
  annotations: ann
})

See the Pen Changing the row height in a Chart by Jack Roddy (@jackroddy) on CodePen.