123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- import ChartDigit4 from '../../../src/chart/digit/ChartDigit4/ChartDigit4.js';
- import Title from "../../../src/chart/commonOptions/title";
-
- let chart=new ChartDigit4(document.getElementsByClassName('c1')[0],{});
- window.addEventListener('resize',()=>{
- chart.resize();
- });
- setTimeout(()=>{
- chart.setOption({
- title:Title.option(''),
- bg:{
- backgroundColor:"#061225"
- },
- grid:{
- left: "28%",
- right: "28%",
- top: "35%",
- bottom: "35%"
- },
- flyicon: {
- species: 'icon1',
- iconColor0: '#2C4287',
- iconColor1: '#4996D2',
- scale: '50%',
- shadowColor: '#00deff',
- shadowBlur: 30
- },
- numdata:{
- titFontsize: 20,
- titColor: '#29d2f6',
- titileLeft: 25,
- titileTop: 0,
- numfontSize: 60,
- numColor: '#ffc000',
- numshowColor: '#ff5400',
- numshowBlur: 50,
- numfontWeight: 'normal',
- numberLeft: 25,
- numberTop: 10,
- iskeepDec: true,
- isthousand:true,
- unitText: '单位',
- unitSize: 16,
- unitColor:'#ffc000',
- unitLeft: 5,
- unitTop: 35
- },
- series: [{
- name: '数据一',
- value: 33322.53
- }
- ]
- })
- },3000);
|