Overview
This topic discusses JSON representation of color ramp objects. A color object is used to specify a range of colors that are applied to a group of symbols.
The following colorRamp definitions are discussed:
- Algorithmic
- Multipart
Algorithmic color ramp
An algorithmic color ramp is defined by two colors and the algorithm used to traverse the intervening color space between them.
{
  "type": "algorithmic",
  "fromColor": <color>,
  "toColor": <color>,
  "algorithm": <"esriHSVAlgorithm" | "esriCIELabAlgorithm" | "esriLabLChAlgorithm">
}{
  "type": "algorithmic",
  "fromColor": [115,76,0,255],
  "toColor": [255,25,86,255],
  "algorithm": "esriHSVAlgorithm"
}Multipart color ramp
A multipart color ramp is defined by a list of constituent color ramps.
{
  "type": "multipart",
  "colorRamps": [
    {
      "type": "algorithmic",
      "fromColor": <color>,
      "toColor": <color>,
      "algorithm": <"esriHSVAlgorithm" | "esriCIELabAlgorithm" | "esriLabLChAlgorithm">
      "start": <double>,
      "stop": <double>
    },
    {
      "type": "algorithmic",
      "fromColor": <color>,
      "toColor": <color>,
      "algorithm": <"esriHSVAlgorithm" | "esriCIELabAlgorithm" | "esriLabLChAlgorithm">
      "start": <double>,
      "stop": <double>
    }
  ]
}{
  "type": "multipart",
  "colorRamps": [
    {
      "type": "algorithmic",
      "fromColor": [255,0,0,255],
      "toColor": [255,255,0,255],
      "algorithm": "esriHSVAlgorithm">
      "start": 0,
      "stop": 33.3
    },
    {
      "type": "algorithmic",
      "fromColor": [0,255,255,255],
      "toColor": [0,0,255,255],
      "algorithm": "esriHSVAlgorithm"
      "start": 33.3,
      "stop": 100
    }
  ]
}Keep in mind the following for the properties above:
- A multipart color ramp supports only the algorithmic color ramp.
- A multipart color ramp supports the algorithmic color ramps with customized startandstopproperties, which used percentages. These are optional parameters. Without using them, sub-colorramp will be evenly distributed in the colorRamps array’s order.