StyleCode Property: tileColor
tileColor
Choose the accent color for a tile.
Applies to | Type | Default |
---|---|---|
assert barchart chart form histogram label linechart logo markdown menu piechart plot scalar scatter slicepicker summary table tabs treemap upload error | color | black |
Examples
// Example: assert
{ tileColor: tomato }
show assert "My Assert" a1b1 with
T.B
// Example: barchart
{ tileColor: tomato }
show barchart "My BarChart" a1b6 with
sum(Quantity)
group by Category
// Example: form
{ tileColor: tomato }
show form "My Form" a1b1 with
Form.SKU
Form.Maximum
// Example: histogram
{ tileColor: tomato }
show histogram "My Histogram" a1 tomato with
PO.Delay
// Example: label
{ tileColor: tomato }
show label "My Label" a1b1 tomato
// Example: linechart
{ tileColor: tomato }
show linechart "My LineChart" a1b6 with
Day.StockOnHand
Day.StockOnOrder
// Example: logo
{ tileColor: tomato }
show logo "" a1b3 tomato
// Example: markdown
{ tileColor: tomato }
show markdown "My Markdown" a1b3 tomato with """
Some markdown
"""
// Example: menu
{ tileColor: tomato }
show menu "" a1b3 tomato with
"Section"
// Example: piechart
{ tileColor: tomato }
show piechart "My PieChart" a1b6 with
sum(Quantity)
group by Category
// Example: plot
{ tileColor: tomato }
show plot "My Plot" a1d4 with
Sales.Quantity
Sales.Discount
// Example: scalar
{ tileColor: tomato }
show scalar "My Scalar" a1 tomato with
sum(Quantity)
// Example: scatter
{ tileColor: tomato }
show scatter "My ScatterPlot" a1d4 with
Sales.Quantity
Sales.Discount
// Example: slicepicker
{ tileColor: tomato }
show slicepicker "Pick a slice" a1b3 with
same(Items.Id)
// Example: summary
{ tileColor: tomato }
show summary "My Summary" a1b3 tomato with
sum(Quantity)
sum(NetAmount)
// Example: table
{ tileColor: tomato }
show table "My Table" a1c4 tomato with
Orders.Date
Orders.Quantity
// Example: tabs
{ tileColor: tomato }
show tabs "My Tabs" a1b3 with
"tab1"
"tab2"
// Example: treemap
{ tileColor: tomato }
show treemap "My Treemap" a1b6 with
T.Quantity
T.Label
// Example: upload
{ tileColor: tomato }
show upload "My Upload" a1b1 editable:"example"
Details
Color pipelines use the accent color in their default mode to give a touch of color to the tile. For more information, refer to the color pipeline for each tile.
In practice, this property is rarely specified with StyleCode syntax (unless
it is provided as an Envision expression). Instead, the standard Envision
syntax specifies the tile color after the tile and position in the show
statement:
show scalar "Value" a1b1 red with A