第一步 引入JS文件 <script type="text/javascript" src="js/echarts.js"></script> js文件有几个版本,可以根据实际需要引用需要的版本。 第二步 准备一个放图表的容器 <div id="chartmain" style="width:600 ...
分类:
Web程序 时间:
2020-11-12 14:11:18
阅读次数:
18
https://www.cnblogs.com/webtall/p/7238593.html echarts各种字体颜色的修改 opiton = { legend: { y:'55%', //距离顶部的距离 textStyle:{ //文字样式 fontSize: 18,//字体大小 color: ...
分类:
其他好文 时间:
2020-09-24 21:07:04
阅读次数:
43
v-model绑定数据传输到后台进行检验: <div id="app"> <fieldset> <legend>登录</legend> <div class="form-group "> <label>帐号</label> <input type="text" class="form-control ...
分类:
其他好文 时间:
2020-08-18 15:44:00
阅读次数:
101
表单标签 <form> 用<fieldset>组合表单数据 [可以为表单加一个框] <legend> 元素为 <fieldset> 元素定义标题 表单属性(9个) Action :规定提交表单时,向何处发送数据Method :规定提交表单所使用的HTTP方法(GET或POST) 何时使用 GET? ...
分类:
Web程序 时间:
2020-07-26 19:11:28
阅读次数:
87
fieldset标签的使用 fieldset用于组合相关的元素将元素分组 当一组表单元素放到fieldset标签内时,浏览器会以特殊方式来显示它们,它们可能有特殊的边界、3D 效果,或者甚至可创建一个子表单来处理这些元素。 legend标签为 fieldset 元素定义标题 实例 <form> <f ...
分类:
其他好文 时间:
2020-07-26 16:04:42
阅读次数:
92
function []=datapro714()% 处理的数据截止7/14/20% [csvdata,~,rawcsvdata] = xlsread('who_covid_19_sit_rep_time_series.csv');[~,~,rawconfirmed] = xlsread('time_ ...
分类:
其他好文 时间:
2020-07-21 13:58:12
阅读次数:
68
1.<iframe></iframe>标签 iframe(inner frame)为内联框架,iframe元素是可以创建包含另外一个文档的行内框架,是body 的子集 常用属性: width 设置内联框架的宽度 height 设置内联框架的高度 name 设置框架的名称 src 设置页面内容的路径 ...
分类:
Web程序 时间:
2020-07-18 11:17:39
阅读次数:
77
plt.plot()绘制线性图 绘制单条线形图 绘制多条线形图 设置坐标系的比例plt.figure(figsize=(a,b)) 设置图例legend() 设置轴的标识 图例保存 fig = plt.figure() plt.plot(x,y) figure.savefig() 曲线的样式和风格( ...
分类:
其他好文 时间:
2020-07-16 00:16:39
阅读次数:
75
1.plot(?,?) 第一个参数为函数的参数 第二参数是函数表达式 2.subplot(?,?,?) 前两个参数表示将plot窗口分割成?x ? 比如1x2表示 1行2列 能够横向并排放置两个函数图像 3.legend(?,...?) n个字符串参数代表plot窗口中n条函数分别的标签 4.xla ...
分类:
其他好文 时间:
2020-07-15 23:18:45
阅读次数:
120
饼图标签展示数值 配置项: option = { title: { text: '项目时间分布', left: 'center' }, tooltip: { trigger: 'item', formatter: '{a} <br/>{b} : {c} ({d}%)' }, legend: { or ...
分类:
其他好文 时间:
2020-07-13 11:34:37
阅读次数:
290