Skip to main content

graphColors

Type

property

Summary

The colors for drawing lines on the graph

Syntax

set the graphColors of <widget> to <pColors>
get the graphColors of <widget>

Description

The graphColors are the colors of each line in the graph widget.

Each line of the graphColors should be a comma delimited list with four items. The items are the red, green, blue, and alpha (opacity) components of the line color.

Examples

local tVar
put "255,0,155,255\n155,100,255,255\n100,255,100,255" into tVar
replace "\n" with return in tVar
set the graphColors of widget "My Graph" to tVar