Google Charts: Dual-Y chart

Certified Associate Developer

Hello,

I've been trying to make a dual-y chart. If I understood correctly, I had to use googleScatterChartField, but I can't see the labels of axis and values for the second y. The code is here:

a!localVariables(
  local!colData: {{ type: "number",id: "Age",rowDataKey: "Age"},
  {type: "number",id: "Weight",rowDataKey: "Weight"},
  { type: "number", id: "Height", rowDataKey: "Height"}},
  local!rowData: {{Age: 28, Weight: 43, Height: 10}, 
  {Age: 9, Weight: 39, Height: 20}, {Age: 2, Weight: 52, Height: 30}, 
  {Age: 20, Weight: 72, Height: 35}},
{
  googleScatterChartField(
    label: "Chart",
    validations:"val",
    chartColumnData: local!colData,
    chartRowData: local!rowData
  )
}
)

  Discussion posts and replies are publicly visible