Property ScaleExpression
ScaleExpression
Gets or sets an Arcade expression object with an expression for scaling symbols in a dictionary renderer.
Declaration
public ArcadeExpression ScaleExpression { get; set; }
Property Value
Type | Description |
---|---|
ArcadeExpression | An Arcade expression object with an expression for scaling symbols in a dictionary renderer. |
Remarks
The ArcadeExpression is evaluated at rendering time. If the expression is not valid or results in an
invalid value, symbols will not be scaled and will display at their original size. For example, to scale symbols
based on an attribute value, you can set Expression with an expression like
if($feature.Symbol_Set == 40, 2.5, 1)
, which scales the symbol size 2.5 times when Symbol_Set
is 40.
Applies to
Platforms and versions
Target | Versions |
---|---|
.NET Standard 2.0 | 100.11 - 200.5 |
.NET | 100.13 - 200.5 |
.NET Windows | 100.13 - 200.5 |
.NET Android | 200.0 - 200.5 |
.NET iOS | 200.0 - 200.5 |
.NET Framework | 100.11 - 200.5 |
Xamarin.Android | 100.11 - 100.15 |
Xamarin.iOS | 100.11 - 100.15 |
UWP | 100.11 - 200.5 |