Click here to Skip to main content
15,919,931 members

Comments by Nihar Ranjan Sahu (Top 2 by date)

Nihar Ranjan Sahu 17-Oct-14 2:05am View    
what is the current logic and what do you want??
Nihar Ranjan Sahu 26-Sep-14 8:46am View    
Yes but its not working.I am using the below code.


$(function () {

$('#Occupancy_Phy').highcharts({

chart: {
type: 'column'

},
draw: { legend: 'none' },
title: {
text: 'Physical',
style: {
color: '#000'
}
},
xAxis: {
categories: [<%=StateCategories %>],
title: {
text: null
},
gridLineWidth: 0,
minorGridLineWidth: 0
},
yAxis: {
min: 0,
title: {
text: null
},
gridLineWidth: 0,
minorGridLineWidth: 0, max: 100
},
tooltip: {
headerFormat: '<span style="font-size:10px">{point.key}</span><table>',
pointFormat: '<tr><td style="color:{series.color};padding:0">Amount: </td>' +
'<td style="padding:0">{point.y}% </td></tr>',
footerFormat: '</table>',
shared: true,
useHTML: true
},
plotOptions: {

column: {
pointPadding: 0.2,
size: '100%',
borderWidth: 0,
events: {
legendItemClick: function () {
return false;
}
}
},
allowPointSelect: false,
legend: {
enable: false
},
series: {
pointWidth: 15,
colorByPoint: true,
legend: false,
dataLabels: {
enabled: true
}

}
},
navigation: {
buttonOptions: {
enabled: false
}
},
series: [{ <%=StateSerices %> }]
});
});