123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- /*
- * @LastEditors: gcz
- */
- /*
- * @LastEditors: gcz
- */
- import themeColor from "./color"
- let page5Char1Schema = {
- title: {
- text: '占地面积统计(亩)',
- textStyle: {
- color: '#02EEFF',
- },
- show: false
- },
- grid: {
- containLabel: true,
- top: "20px",
- left: '10px',
- bottom: '20px',
- right: '24px'
- },
- tooltip: {},
- xAxis: {
- data: ['榕江县草珊瑚育苗基地', '榕江县乐乡村养殖基地'],
- axisLabel: {
- color: "rgba(255, 255, 255, 1)"
- }
- },
- yAxis: {
- axisLabel: {
- color: "rgba(255, 255, 255, 1)"
- }
- },
- series: [
- {
- name: '占地面积',
- type: 'bar',
- data: [235, 302],
- itemStyle: {
- color: '#02EEFF'
- }
- }
- ]
- }
- export default page5Char1Schema
|