echarts動態賦值結合dataZoom滑動資料
wxml
<view class="container">
<ec-canvas id="myechart" canvas-id="graph" ec="{{ ec }}"></ec-canvas>
</view>
wxss
.container{width:702rpx;height: 360rpx;position: relative;left:24rpx}
ec-canvas{width: 100%;height: 100%;position: relative;z-index: 1;}
js
import * as echarts from '../../ec-canvas/echarts';
Page({
onLoad: function (options) {
let _this = this
this.echartsComponnet = this.selectComponent('#myechart');
this.getChartData()
},
// 獲取資料
getOption1: function () {
var _this = this
var option = {
tooltip: {
trigger: "axis",
axisPointer: {
type: "shadow",
textStyle: {
color: "#fff"
}
},
},
calculable: true,
xAxis: [{
type: "category",
splitLine: {
show: false
},
axisLabel: {
show: true,
fontSize: 14,
textStyle: {
color: '#333333'
}
},
axisLine: {
show: false,
onZero: false
},
axisTick: {
show: false,
},
data: _this.data.xData,
}],
yAxis: [{
splitNumber: 3,//控制x,y軸對應的展示幾個欄位
type: "value",
splitLine: {
show: false
},
axisLabel: {
show: true,
fontSize: 14,
textStyle: {
color: '#333333'
}
},
axisLine: {
show: false,
onZero: false
},
axisTick: {
show: false,
},
}],
dataZoom: [{
show: true,
backgroundColor:"#D8D8D8", //元件的背景顏色
height: 6,
xAxisIndex: [0],
bottom: 30,
"start": 10,
"end": 40,
// 拖拽手柄樣式 svg 路徑
handleIcon: 'M512 512m-208 0a6.5 6.5 0 1 0 416 0 6.5 6.5 0 1 0-416 0Z M512 192C335.264 192 192 335.264 192 512c0 176.736 143.264 320 320 320s320-143.264 320-320C832 335.264 688.736 192 512 192zM512 800c-159.072 0-288-128.928-288-288 0-159.072 128.928-288 288-288s288 128.928 288 288C800 671.072 671.072 800 512 800z',
handleColor: '#fff',
handleSize: 16,
handleStyle: {
borderColor: '#D8D8D8',
// shadowBlur: 4,
// shadowOffsetX: 1,
// shadowOffsetY: 1,
// shadowColor: '#e5e5e5'
},
textStyle: {
color: "#333333",
},
fillerColor: "#5260FF",
borderColor: "#D8D8D8",
}, {
type: "inside",
show: true,
height: 15,
start: 1,
end: 35
}],
series: [{
type: "line",
symbolSize: 4,
symbol: 'circle',
symbol: 'none',
smooth: true, //曲線平滑
itemStyle: {
normal: {
color: "#6236FF",
borderColor: "#6236FF",
borderWidth:6,
lineStyle: { //線的顏色
color: '#6236FF',
width:4
},
},
},
data: _this.data.dataCur,
}]
}
return option
},
// 頁面一載入獲取圖表資料
getChartData: function () {
var that = this
console.log(that.data.date01, that.data.date02)
let xDataList = function () {
var data = [];
for (var i = 1; i < 31; i++) {
data.push(i + "日");
}
return data;
}();
let dataCurList = [1,2,3,4,5,6,7,8,9,10,1,12,1,3,14,5,6,7,8,16,15,8,9,10,1,12,1,3,14,5]
this.setData({
dataCur:dataCurList,
xData:xDataList,
})
setTimeout(()=>{
that.init_echarts()
},1000)
},
//初始化圖表
init_echarts: function () {
this.echartsComponnet.init((canvas, width, height) => {
// 初始化圖表
const Chart = echarts.init(canvas, null, {
width: width,
height: height
});
Chart.setOption(this.getOption1());
Chart.on('datazoom',function(params){
console.log(params);//裡面存有代表滑動條的起始的數字
let xAxis=Chart.getModel().option.xAxis[0];//獲取axis
console.log(xAxis.data);//axis的標號資料
console.log(xAxis.rangeStart);//滑動條左端對應在xAxis.data的索引
console.log(xAxis.rangeEnd);//滑動條右端對應在xAxis.data的索引
})
// 注意這裡一定要返回 chart 例項,否則會影響事件處理等
return Chart;
});
},
data: {
xData:[],//圖表x軸資料的預設值
dataCur:[],//圖表資料的預設值
ec: {
lazyLoad: true //初始化載入
},
}
})
相關文章
- vue:動態給img賦值Vue賦值
- jquery 動態給table賦值jQuery賦值
- html select動態賦值HTML賦值
- vue中echarts的動態渲染資料watchVueEcharts
- uniapp動態賦值頭部<title>APP賦值
- Django結合Echarts在前端展示資料DjangoEcharts前端
- [學習筆記] 動態開點權值線段樹合併 - 資料結構筆記資料結構
- 動態規劃入門——動態規劃與資料結構的結合,在樹上做DP動態規劃資料結構
- Struct FORM ACTION 無法解決動態賦值?StructORM賦值
- (entity bean)動態賦值值物件-- Dynamic Create Value Object 模式 (轉)Bean賦值物件Object模式
- echarts 主題動態切換Echarts
- echarts之靜態與動態地圖Echarts地圖
- 圖表外掛Highcharts的動態化賦值,實現圖表資料的動態化設定顯示賦值
- SQL server 動態SQL對變數講行賦值SQLServer變數賦值
- 動態監控input的值的變化 賦值value觸發賦值
- 動態賦值弱型別值物件--Dynamic Create Value Object 模式 (轉)賦值型別物件Object模式
- 使用Echarts和Ajax動態載入資料進行大資料視覺化Echarts大資料視覺化
- echarts遷移圖動態載入Echarts
- Angularjs動態載入ECharts(一)AngularJSEcharts
- class 和 style 資料動態繫結
- Vue 動態資料繫結核心方法Vue
- elementui表格動態資料單元格合併UI
- banq 關於動態圖文結合
- 動態記憶體的賦值和修改(Android之JNI)記憶體賦值Android
- echarts折線圖使用dataZoom,切換資料時渲染異常,出現豎線bugEchartsOOM
- 完成Excel動態連結外部資料庫Excel資料庫
- WPF ComboBox資料繫結:初始化動態載入ItemsSource後首次賦值Text不顯示問題解決賦值
- 靜態合批和動態合批
- Vue.js - 陣列和物件的賦值動態變化 & 克隆Vue.js陣列物件賦值
- 使用 Attribute +反射 來對兩個類之間動態賦值反射賦值
- 關於微信小程式中如何實現資料視覺化-echarts動態渲染微信小程式視覺化Echarts
- [Echarts視覺化] 二.php和ajax連線資料庫實現動態資料視覺化Echarts視覺化PHP資料庫
- jQuery動態修改連結的href屬性值jQuery
- web前端仿手機左右滑動(手滑+自動滑動)Web前端
- ListView動態更新資料View
- iOS UISlider數值與滑塊聯動iOSUIIDE
- springboot結合flyway自動建立資料庫及資料表Spring Boot資料庫
- 動態改變類結構 & 動態…