/**
* @constructor
*/
function XUILargeCandlestick() {
}
XUILargeCandlestick.prototype = {
//组件
/**
"title":{
"title":"标题",
"name":"title",
"type":"PUITitleInterface",
"index":0
}*/
/**
"tooltip":{
"title":"提示框",
"name":"tooltip",
"type":"PUITooltipInterface",
"index":0
}*/
/**
"xAxis0":{
"title":"x轴0",
"name":"xAxis0",
"type":"PUIXAxisInterface",
"index":0
}*/
/**
"xAxis1":{
"title":"x轴1",
"name":"xAxis1",
"type":"PUIXAxisInterface",
"index":1
}*/
/**
"yAxis0":{
"title":"y轴0",
"name":"yAxis0",
"type":"PUIYAxisInterface",
"index":0
}*/
/**
"yAxis1":{
"title":"y轴1",
"name":"yAxis1",
"type":"PUIYAxisInterface",
"index":1
}*/
/**
"dataZoomInside":{
"title":"内置缩放组件",
"name":"dataZoomInside",
"type":"PUIDataZoomInsideInterface",
"index":0
}*/
/**
"dataZoomSlider":{
"title":"滑动缩放组件",
"name":"dataZoomSlider",
"type":"PUIDataZoomSliderInterface",
"index":1
}*/
/**
"candlestick":{
"title":"k线图",
"name":"candlestick",
"type":"PUICandlestickInterface",
"index":0
}*/
/**
"bar":{
"title":"柱状图",
"name":"bar",
"type":"PUIBarInterface",
"index":1
}*/
//接口
/**
* 清除数据
*/
ClearAllData:function () {
},
/**
* 设置数据
* @param {Number} nData 数据
* @property {Number} ValueData 200000
*/
SetValueData:function (nData) {
},
}