jQWidgets Forums
Forum Replies Created
-
Author
-
Thanks Dimitar
August 1, 2013 at 10:34 am in reply to: How to change mouse over color on the jqxgrid. How to change mouse over color on the jqxgrid. #26081Thanks Dimitar.
June 21, 2013 at 11:50 am in reply to: Range axis values shows long value in between Range axis values shows long value in between #23578Hi Dimitar,
Thanks for your feedback, I did some test research on it and found that on commenting the custom formatFunction, it shows proper avoiding those long decimal values.
the concern is that on overriding this function, the formatSettings:{decimalPlaces: 2}, does not works because in new test set i just added
formatFunction: function(value){
return value;
},
this code doesn’t do anything returns as it is, so just want to confirm does any issue persist like such, or any workaround suggestion for I need to take careJune 14, 2013 at 7:01 am in reply to: Range axis values shows long value in between Range axis values shows long value in between #23144Hi Dimitar,
Please check below my code i have in the value axis
valueAxis:
{showGridLines: ${reportData.rangeGridLine[0]},
gridLinesColor :’#’+rangeGridColor,displayValueAxis: true,
flip:true,
axisSize: ‘auto’,
formatSettings:
{
//decimalPlaces: 0
},
description: “${fn:replace(reportData.rangeAxisLabel, ‘\”‘, ‘\\\”‘)}”,
minValue: ${reportData.minValue},
maxValue: ${reportData.maxValue},
unitInterval: ${reportData.unitInterval},
formatFunction: function(value){
for(i in primRangeAxisData){
var val = primRangeAxisData[i];
for(j in val){
if(value == j){
return primRangeAxisData[i][value];
}
}
}
return value;
},
},May 22, 2013 at 10:37 am in reply to: How to set position of label in bar chart How to set position of label in bar chart #21639Hello Dimitar,
I could not find solution in the forum link you provided, you have given an example of chart, but did not mention to how we can position the label to the top edge of the bar
-
AuthorPosts