javascript - How to set dial to maximum in angular gauge chart when value is more than maximum? -


i'm using fusion chart library. in using angular gauge chart report. i'm facing issue dial automatically set fusion chart library based on dial value passing it. issue when pass value more maximum limit, fusion chart sets dial pointer 0. want pointer end if passed maximum value.

if add 1 condition before passing data dial value if beyond maximum value overwrite maximum value works. pointer set expected value showing not want. maximum value time.

fiddle

you can see. when pass 101, sets pointer 0. want set @ 100 want display value 101 only.

any appreciated.

this limitation angular gauge , reported , being fixed. work around increase range in colorrange section.

    "colorrange": {         "color": [             {                 "minvalue": "0",                 "maxvalue": "50",                 "code": "#e44a00"             },             {                 "minvalue": "50",                 "maxvalue": "75",                 "code": "#f8bd19"             },             {                 "minvalue": "75",                 "maxvalue": "110",                 "code": "#6baa01"             }         ]     } 

fiddle


Comments

Popular posts from this blog

toolbar - How to add link to user registration inside toobar in admin joomla 3 custom component -

linux - disk space limitation when creating war file -

How to provide Authorization & Authentication using Asp.net, C#? -