I want to insert Yaxis label.
The label ranges are 0, 24, 34, 47, 60, 80.
Have you got any idea how can i do this ?
Source code is
var settings = {
title: “”,
description: “”,
enableAnimations: true,
animationDuration:1000,
showToolTips: true,
showLegend:false ,
showBorderLine:false,
padding: { left: 15, top: 2, right: 15, bottom: 2 },
source: sampleData,
colorScheme: ‘scheme28′,
xAxis:{
type:’basic’,
dataField: ‘Day’
},
seriesGroups:[{
type: ‘line’,
toolTipFormatFunction: toolTipCustomFormatFn,
showLabels: false,
valueAxis:{
unitInterval: 20,
minValue: 0,
maxValue: 80,
displayValueAxis: false,
axisSize: ‘auto’,
tickMarksColor: ‘#FFFF00’
},
bands:[
{minValue: 0, maxValue: 24, color: ‘#0367BC’, opacity: 0.9},
{ minValue: 24, maxValue: 34, color: ‘#5CE600’,opacity: 0.9},
{ minValue: 34, maxValue: 47, color: ‘#F6E101’,opacity: 0.9},
{ minValue: 47, maxValue: 60, color: ‘#E36C00’,opacity: 0.9},
{ minValue: 60, maxValue: 80, color: ‘#EA0000’,opacity: 0.9}
],
series: [
{ dataField: ‘Goal’, displayText: ‘WQI 지수’, symbolType: ‘square’ }
]}
]};