简体   繁体   中英

FusionChart; Remove color range slider from map

Please, how can I remove colour range slider from fusion chart? I have tried to remove the colorrange from the chart object but it is stil there.

Thanks

In your dataSource colorrange object, set "gradient" to 0

"colorrange": {
    "gradient": 0,
    "color": [
      {
        "minvalue": "0",
        "maxvalue": "50",
        "code": "#62B58F"
      },
      {
        "minvalue": "50",
        "maxvalue": "75",
        "code": "#FFC533"
      },
      {
        "minvalue": "75",
        "maxvalue": "100",
        "code": "#F2726F"
      }
    ]
  }

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM