Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
DW868990
Helper IV
Helper IV

Vega Lite - Text color based on condition, so next white when darker background

Hi,

 

I am trying to get the Text color of the my Text Mark to be white when the value is over a 1000.

 

My vega-lite code is below and is not returning the color change, any help in what i am missing is appreciated.

 

{
"data": {"name": "dataset"},
"layer": [
{
"mark": "rect",
"encoding": {
"x": {"field": "Category",
"type": "nominal"
},
"y": {"field": "Sales", "type": "ordinal",
"bin":{"maxbins":10}},
"color": {"aggregate": "count", "field": "CustomerID"},
"tooltip": [
{"field": "Category", "type": "ordinal"},
{"aggregate": "count","field": "Metric", "type":"quantitative"}
]
}
},
{
"mark": {
"type": "text",
"dy":60,
"dx":-50
},
"encoding": {
"x": {"field": "Category",
"type": "nominal"
},
"y": {"field": "Sales", "type": "ordinal",
"bin":{"maxbins":10}},
"text": {"aggregate": "count","field": "CustomerID", "type": "quantitative"},
"color": {
"condition": {
"test": "datum['CustomerID'] < 1000",
"value": "white"},
"value": "black"
}
}
}
],
"config": {
"axis": {"grid": true, "tickBand": "extent"}
}
}

1 ACCEPTED SOLUTION
dm-p
Super User
Super User

Hi @DW868990,

In your condition, you have the following test to set the color to white, and this is using the "less than" (<) symbol:

"test": "datum['CustomerID'] < 1000",

As you want the color to be set if the value exceeds 1000, I'd suggest changing this to use the "greater than" (>) symbol, e.g.:

"test": "datum['CustomerID'] > 1000",

Alternative approach

As using the color encoding channel will create a scale that might cause issues if you bind color elsewhere in your spec, you could also try using the color property in the mark directly, which is better suited for this use case. HEre's how I'd re-write your spec by removing the encoding channel and binding this to the mark's color property using an ExprRef, like this (lines 21-23):

{
  "data": { "name": "dataset" },
  "layer": [
    {
      "mark": "rect",
      "encoding": {
        "x": { "field": "Category", "type": "nominal" },
        "y": { "field": "Sales", "type": "ordinal", "bin": { "maxbins": 10 } },
        "color": { "aggregate": "count", "field": "CustomerID" },
        "tooltip": [
          { "field": "Category", "type": "ordinal" },
          { "aggregate": "count", "field": "Metric", "type": "quantitative" }
        ]
      }
    },
    {
      "mark": {
        "type": "text",
        "dy": 60,
        "dx": -50,
        "color": {
            "expr": "datum['CustomerID'] > 1000 ? 'white' : 'black'"
        }
      },
      "encoding": {
        "x": { "field": "Category", "type": "nominal" },
        "y": { "field": "Sales", "type": "ordinal", "bin": { "maxbins": 10 } },
        "text": {
          "aggregate": "count",
          "field": "CustomerID",
          "type": "quantitative"
        }
      }
    }
  ],
  "config": {
    "axis": { "grid": true, "tickBand": "extent" }
  }
}

Regards,

Daniel





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!


On how to ask a technical question, if you really want an answer (courtesy of SQLBI)




View solution in original post

1 REPLY 1
dm-p
Super User
Super User

Hi @DW868990,

In your condition, you have the following test to set the color to white, and this is using the "less than" (<) symbol:

"test": "datum['CustomerID'] < 1000",

As you want the color to be set if the value exceeds 1000, I'd suggest changing this to use the "greater than" (>) symbol, e.g.:

"test": "datum['CustomerID'] > 1000",

Alternative approach

As using the color encoding channel will create a scale that might cause issues if you bind color elsewhere in your spec, you could also try using the color property in the mark directly, which is better suited for this use case. HEre's how I'd re-write your spec by removing the encoding channel and binding this to the mark's color property using an ExprRef, like this (lines 21-23):

{
  "data": { "name": "dataset" },
  "layer": [
    {
      "mark": "rect",
      "encoding": {
        "x": { "field": "Category", "type": "nominal" },
        "y": { "field": "Sales", "type": "ordinal", "bin": { "maxbins": 10 } },
        "color": { "aggregate": "count", "field": "CustomerID" },
        "tooltip": [
          { "field": "Category", "type": "ordinal" },
          { "aggregate": "count", "field": "Metric", "type": "quantitative" }
        ]
      }
    },
    {
      "mark": {
        "type": "text",
        "dy": 60,
        "dx": -50,
        "color": {
            "expr": "datum['CustomerID'] > 1000 ? 'white' : 'black'"
        }
      },
      "encoding": {
        "x": { "field": "Category", "type": "nominal" },
        "y": { "field": "Sales", "type": "ordinal", "bin": { "maxbins": 10 } },
        "text": {
          "aggregate": "count",
          "field": "CustomerID",
          "type": "quantitative"
        }
      }
    }
  ],
  "config": {
    "axis": { "grid": true, "tickBand": "extent" }
  }
}

Regards,

Daniel





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!


On how to ask a technical question, if you really want an answer (courtesy of SQLBI)




Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors