风险等级
适合人群
保守型
强烈关注资产的安全性,对风险高度厌恶。
测测澳门电子游戏正规网站是什么类型
');
var myChart = echarts.init(document.getElementById('main'));
var option = {
tooltip: {
trigger: 'axis',
backgroundColor:'#f2f2f2',
textStyle:{color:'#000',fontSize:'12'}
//axisPointer: {type: 'cross'}
},
legend: {
data:legend,
left:'40'
},
grid : {
x:45,y:40,x2:40,y2:30
},
toolbox: {
show: true,
feature: {
dataZoom: {yAxisIndex: 'none'},
restore: {},
saveAsImage: {}
}
},
xAxis : [
{
type : 'category',
splitLine: {show:true,lineStyle:{color:'#ececec'}},
boundaryGap: false,
data : xAxisData
}
],
yAxis : [
{
type : 'value',
precision: 2,
splitLine: {lineStyle:{color:'#ececec'}},
scale:true
}
],
series : [
{
name:legend[0],
type:'line',
//symbol: 'none',
data:seriesData0,
itemStyle : {
normal : {
color: "#ca0821",
lineStyle:{width:1}
}
},
areaStyle: {
normal:{color: new echarts.graphic.LinearGradient(0, 0, 0, 1,[{offset: 0, color: '#ca0821'},{offset: 1, color: '#fff'}], false)}
}
},
{
name:legend[1],
type:'line',
//symbol: 'none',
data:seriesData1,
itemStyle : {
normal : {
color: "#c28600",
lineStyle:{width:1}
}
},
areaStyle: {
normal:{color: new echarts.graphic.LinearGradient(0, 0, 0, 1,[{offset: 0, color: '#c28600'},{offset: 1, color: '#fff'}], false)}
}
}
]
};
myChart.setOption(option);
}
});
}
function getTable(fundcode,sDate1,sDate2,pages){
$('#frmTable').html("

");
$('#netvaluePage').html("");
$.ajax({
type: "get",
url: "/common-web/chart/fundnettable/getFundNetTableJson",
data: {fundcode:fundcode,from:sDate1,to:sDate2,pages:pages,siteId:"6149a84cff8e4643a4092ea94122ec55"},
dataType : "json",
success: function(data){
var datalist = data.dataList;
var currentpage = data.currentPage;
var totalpage = data.totalPage;
var tableHtml = '
日期 | 每万份收益 | 七日年化收益率 |
';
if (datalist.length > 0){
for(var i=0;i'+datalist[i].date+' | '+datalist[i].incomeunit+' | '+parseFloat(datalist[i].incomeratio).toFixed(3)+'% | ';
}
}else{
tableHtml += '暂无数据 |
';
}
tableHtml += '
';
var netvaluePage = '
';
if (datalist.length > 0){
netvaluePage += '
数据下载';
}
$('#frmTable').html(tableHtml);
$('#netvaluePage').html(netvaluePage);
}
});
}