The background color of a graph in a DataWindow.
Graph controls
Describe and Modify argument:
"graphname.BackColor { = long }"
Parameter |
Description |
|---|---|
graphname |
The graph whose background color you want to get or set. |
long |
(exp) A long expression specifying the color (red, green, and blue values) to be used as the graph’s background color. Long can be a quoted DataWindow expression. |
Select the graph control and set the value in the Properties window, General category.
[Visual Basic]
Dim BColor As String
dw1.SetProperty("Graph1.BackColor", "250")
BColor = dw1.Describe("Graph1.BackColor")
dw1.Modify("Graph1.BackColor=250")
[C#]
string BColor;
dw1.SetProperty("Graph1.BackColor", "250");
BColor = dw1.Describe("Graph1.BackColor");
dw1.Modify("Graph1.BackColor=250");