1、错误描述2、错误原因var map = function(mapData){
require(
[
'echarts',
'echarts/chart/map'
],
function (ec) {
var mapChart = ec.init(d...
分类:
其他好文 时间:
2015-07-25 00:18:53
阅读次数:
569
1.简单粗暴:*{margin:0;padding:0}不建议2.淘宝方式:body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, dl, dt, dd, ul, ol, li, pre, form, fieldset, legend, button, in...
分类:
Web程序 时间:
2015-07-16 18:38:32
阅读次数:
145
body,h1,h2,h3,h4,h5,h6,dl,dt,dd,ul,ol,li,th,td,p,blockquote,pre,form,fieldset,legend,input,button,textarea,hr{margin:0;padding:0}body,button,input,sel...
分类:
其他好文 时间:
2015-07-07 19:15:19
阅读次数:
113
CCA
names(CCA)
CCB
names(CCA)
CC
barplot(t(CC), beside = TRUE,legend = c("tomcat", "netty"),
width = c(10, 10), args.legend = list(x = "topleft", cex=1),
xlim = c(0, 50),ylim = c(0, 10000),c...
分类:
编程语言 时间:
2015-07-03 10:34:35
阅读次数:
218
1、浏览器默认的margin和padding不同。解决方案:将标签的margin和padding值重置为0;body,ol,ul,h1,h2,h3,h4,h5,h6,p,th,td,dl,dd,form,fieldset,legend,input,textarea,select{margin:0;p...
分类:
其他好文 时间:
2015-06-29 22:02:27
阅读次数:
113
最近工作遇到一个legend手动换行的问题 ,用搜索引擎搜了N条记录都没有答案 最后还是看文档解决了。默认布局到达边缘会自动分行(列)修改Legend.data 手动添加一个字符串 '' 就能实现手动换行参考:http://echarts.baidu.com/doc/doc.html#Legend
分类:
其他好文 时间:
2015-06-10 23:52:39
阅读次数:
1529
本文记录了python中的数据可视化——散点图scatter,令x作为数据(50个点,每个30维),我们仅可视化前两维。labels为其类别(假设有三类)。这里的x就用random来了,具体数据具体分析。label设定为[1:20]->1, [21:35]->2, [36:50]->3,(python中数组连接方法:先强制转为list,用+,再转回array)用matplotlib的scatter...
分类:
编程语言 时间:
2015-06-10 12:21:55
阅读次数:
1185
1.Add title ,axis Lables, and Legend to Graph:1 x=linspace(-2*pi,2pi,100);2 y1=sin(x);3 y2=cos(x);4 figure5 plot(x,y1,x,y2);6 title('Graph of sine and...
分类:
其他好文 时间:
2015-06-03 00:52:12
阅读次数:
147
@charset "utf-8";/* 浏览器样式清除 reset */body,form,div,span,ul,ol,li,p,pre,dl,dt,dd,h1,h2,h3,h4,h5,h6,em,a,fieldset,legend,address,label,textarea,select,in...
分类:
Web程序 时间:
2015-05-29 13:26:57
阅读次数:
119
//第一个参数action名称,第二个参数controller名称
@using?(Html.BeginForm("CreateItem",?"Knoledge"))
{???
????<fieldset>
????????<legend>KnolegeModels</legend>
????????<div?...
分类:
Web程序 时间:
2015-05-12 11:48:01
阅读次数:
167