aestheticMaximum Function (GPL)
Syntax
aestheticMinimum(<aesthetic type>.<aesthetic constant>)
or
aestheticMinimum(<aesthetic type>."aesthetic value")
<aesthetic type>. An aesthetic type indicating the
specific aesthetic for which a maximum value is being specified. This
is an aesthetic created as the result of an aesthetic function (such
as size
) in the ELEMENT
statement.
<aesthetic constant>. A constant for the aesthetic
(for example, size.huge
). Valid constants depend
on the aesthetic.
"aesthetic value". A specific value for the aesthetic (for
example, size."10px"
. Valid values depend on the
aesthetic.
Description
Specifies an aesthetic value that is mapped to the maximum data
value for a scale. The maximum data value may be a "nice value" based
on the data (the default), the exact data maximum (if using the dataMaximum
function
on the scale), or a specified value (if using the max
function
on the scale). For example, a graphic element may be sized by a continuous
value. By default, the continuous scale has a "nice value" maximum.
The aestheticMaximum
function can map a size to this
maximum value.
Examples
SCALE: linear(aesthetic(aesthetic.size), aestheticMinimum(size."1px"),
aestheticMaximum(size."5px"))
ELEMENT: point(position(x*y), size(z))