Merge branch 'develop' of http://192.168.10.125/k18_web/NFS.git into develop
This commit is contained in:
@@ -108,6 +108,7 @@ $(document).ready(function(){
|
||||
});
|
||||
});
|
||||
function searchList(){
|
||||
loading();
|
||||
var start=$("#searchFoundStartTime").val();
|
||||
var end=$("#searchFoundEndTime").val();
|
||||
if(start==''||end==''||end==null||start==null){
|
||||
@@ -321,7 +322,7 @@ function protocolTypeChart(rs){
|
||||
softConnector: true, // 是否使用曲线
|
||||
formatter: function () {
|
||||
// 通过函数判断是否显示数据标签,为了防止数据标签过于密集
|
||||
return this.percentage > 1 ? '<b>' + this.point.name + ' :</b> ' +this.percentage.toFixed(1)+' %' : null;
|
||||
return this.percentage > 1 ? '<b>' + this.point.name + ' :</b> ' +this.percentage.toFixed(2)+' %' : null;
|
||||
},
|
||||
style: {
|
||||
color: (Highcharts.theme && Highcharts.theme.contrastTextColor) || 'black'
|
||||
@@ -353,7 +354,7 @@ function protocolTypeChart(rs){
|
||||
},
|
||||
tooltip: {
|
||||
headerFormat: '{series.name}<br>',
|
||||
pointFormat: '{point.name}: <b>{point.percentage:.1f}%</b>'
|
||||
pointFormat: '{point.name}: <b>{point.percentage:.2f}%</b>'
|
||||
},
|
||||
series: [{
|
||||
name: "App",
|
||||
|
||||
@@ -98,6 +98,7 @@ $(document).ready(function(){
|
||||
});
|
||||
});
|
||||
function searchList(){
|
||||
loading();
|
||||
var start=$("#searchFoundStartTime").val();
|
||||
var end=$("#searchFoundEndTime").val();
|
||||
if(start==''||end==''||end==null||start==null){
|
||||
@@ -310,7 +311,7 @@ function protocolTypeChart(rs){
|
||||
softConnector: true, // 是否使用曲线
|
||||
formatter: function () {
|
||||
// 通过函数判断是否显示数据标签,为了防止数据标签过于密集
|
||||
return this.percentage > 1 ? '<b>' + this.point.name + ' :</b> ' +this.percentage.toFixed(1)+' %' : null;
|
||||
return this.percentage > 1 ? '<b>' + this.point.name + ' :</b> ' +this.percentage.toFixed(2)+' %' : null;
|
||||
},
|
||||
style: {
|
||||
color: (Highcharts.theme && Highcharts.theme.contrastTextColor) || 'black'
|
||||
@@ -342,7 +343,7 @@ function protocolTypeChart(rs){
|
||||
},
|
||||
tooltip: {
|
||||
headerFormat: '{series.name}<br>',
|
||||
pointFormat: '{point.name}: <b>{point.percentage:.1f}%</b>'
|
||||
pointFormat: '{point.name}: <b>{point.percentage:.2f}%</b>'
|
||||
},
|
||||
series: [{
|
||||
name: "Protocol",
|
||||
|
||||
Reference in New Issue
Block a user