当前位置

网站首页> 程序设计 > 开源项目 > 程序开发 > 浏览文章

highcharts 笔记 - 小渝人儿

作者:小梦 来源: 网络 时间: 2024-05-23 阅读:

reset zoom 重置

$(function() {function resetChartZoom() {    chart.zoomOut();}var chart = new Highcharts.StockChart({        chart: {        renderTo: 'container',        borderWidth: 1,        plotBorderWidth: 1,        resetZoomButton: {theme: {    display: 'none'}        },        zoomType: 'xy'    },        rangeSelector: {        selected: 1    },        series: [{        name: 'USD to EUR',        data: usdeur    }]});$('#resetZoom').click(function() {    resetChartZoom();});});

相关阅读

热点阅读