GRADIENTFILLSYMBOL

Used in

CONFIG  REQUEST  RESPONSE  

Servers

Image  Feature  ArcMap  

Parent elements

EXACT  OBJECT  OTHER  POLYGON  RANGE  SIMPLERENDERER 

Syntax

<GRADIENTFILLSYMBOLAttribute Description Table

     When using ArcMap Server:
     finishcolor="0,0,0 - 255,255,255" [0,255,0]
     startcolor="0,0,0 - 255,255,255" [255,0,0]
     type="bdiagonal | fdiagonal | horizontal | vertical" [bdiagonal]

     When using Image or Feature Server:
     antialiasing="true | false" [false]
     finishcolor="0,0,0 - 255,255,255" [0,255,0]
     overlap="true | false" [true]
     startcolor="0,0,0 - 255,255,255" [255,0,0]
     transparency="0.0 - 1.0" [1.0]
     type="bdiagonal | fdiagonal | horizontal | vertical" [bdiagonal]
>

     No Child Elements
</GRADIENTFILLSYMBOL >

Description

Fills polygons with a gradual gradient based on two colors.

Restrictions


Notes


Attribute Descriptions for GRADIENTFILLSYMBOL

AttributeUsage
antialiasingUsed to make edges of labels and symbols smoother. When set to "true", antialiasing is active. Note that the time to generate a map may significantly increase when antialiasing is turned on.
finishcolorEnd color using RGB values.
overlapDetermines if labels can overlap this symbol. When "true", labels can overlap. When "false", labels will not overlap the symbol. If labels are not drawing as expected, check if overlap is set to "false" for this symbol or any other symbol in the ArcIMS service.
startcolorStart color using RGB values.
transparencyValue to set percentage of transparency. 1.0 is 0 percent transparent. 0.0 is 100 percent transparent.
typeSymbol type.
Back to top 

Examples for GRADIENTFILLSYMBOL

Example 1: When in CONFIG or REQUEST.
<?xml version="1.0" encoding="UTF-8"?>
<ARCXML version="1.1">
  <CONFIG>
    <ENVIRONMENT>
      <LOCALE country="US" language="en" variant="" />
      <UIFONT color="0,0,0" name="Arial" size="12" style="regular" />
      <SCREEN dpi="96" />
    </ENVIRONMENT>
    <MAP>
      <PROPERTIES>
        <ENVELOPE minx="-124.594842" miny="24.955227" maxx="-67.672764" maxy="49.596039" name="Initial_Extent" />
        <MAPUNITS units="decimal_degrees" />
        <FILTERCOORDSYS id="4326" />
        <FEATURECOORDSYS id="4326"/>
      </PROPERTIES>
      <WORKSPACES>
         <SHAPEWORKSPACE name="shp_ws-0" directory="<path to USA ESRIDATA>"/>
      </WORKSPACES>
      <LAYER type="featureclass" name="STATES" visible="true" id="1">
        <DATASET name="STATES" type="polygon" workspace="shp_ws-0" />
        <SIMPLERENDERER>
          <GRADIENTFILLSYMBOL transparency="1.0" type="vertical" startcolor="0,255,0" finishcolor="0,0,255" overlap="true" />
        </SIMPLERENDERER>
      </LAYER>
    </MAP>
  </CONFIG>
</ARCXML>

Back to top