Boxplot, Title Y-axis

Hi community,

the Y-title of my boxplot should be 'Percent'. But the Chart shows the Title like this:

boxplot01

The source of the chart is this:

{
  "$schema": "https://vega.github.io/schema/vega-lite/v5.json",
  "title": "Ressourcennutzung"

  "data": {
    "url": {
      "%context%": "true"
      "index": "boxplot02"
      "body": {"size": 10000}
    }
    "format": {"property": "hits.hits"}
  }
  
  "mark": "boxplot"
  "encoding" : {
    "x": {"field": "_source.rxDes" "type": "nominal",
         "axis":{"title": ""}},
    "y": {"field": "_source.Percent", "type": "quantitative",
          "axis":{"title": "Percent"} "height": 400}
    "color": {"field": "_source.rxDes" legend: null},
  }
}

How can I get the right Title 'Percent' at the Y-axis?

Regards Joerg

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.