The border width to be applied to
Description
Notes
Example
| Example: Changing the border width within a BarLayer | |
![]() | |
{import * from CURL.GUI.CHARTS}
{import * from CHARTS-DOC,
location = "../docstring-support/gui/charts-doc.scurl"
}
{let layer:BarLayer =
{BarLayer
sample-records,
"Age",
"Points",
x-axis-data = {ChartDataSeries sample-records, "Name"},
bar-border-width = 1pt
}
}
{LayeredChart
width = 15cm,
height = 7cm,
layer
}
bar-border-width:
{TextField
value = "1pt",
{on ValueFinished at tf:TextField do
set layer.bar-border-width = {evaluate tf.value}
}
}
|