jorgerm Report post Posted April 23, 2018 Good morning to all. In a graph of type HLinearGauge I have the following color Range: colorRange: { color: [{minValue: '0', maxValue: '75', code: '# 6baa01', label: ''}, {minValue: '75', maxValue: '90', code: '# f8bd19', label: ''}, {minValue: '90', maxValue: '100', code: '# e44a00', label: ''}] and I need only the following TicksMarks and TicksValue to appear: 0, 75, 90 and 100 It can? Thanksss Share this post Link to post Share on other sites
Akash Biswas Report post Posted April 25, 2018 Hi, The ColorRange object defines the sectional colors of the range as defined by the min, max, code in the individual "color" objects. However, the tick marks of a gauge are placed on equal intervals continuously throughout the horizontal line depicting a scale. So, the tick marks cannot be discontinuous in nature to plot at values like 0, 75, 90, 100. For further reference to tick marks, please check this link : https://www.fusioncharts.com/dev/chart-guide/chart-configurations/tick-marks Thanks, Akash. Share this post Link to post Share on other sites