Highcharts一些屬性
renderTo: 'container', //圖表的頁面顯示容器(也就是要顯示到的div)
defaultSeriesType: 'line', //圖表型別(line、spline、scatter、splinearea、bar、pie、area、column)
marginRight: 50, //上下左右空隙(圖表跟圖框之間)
marginBottom: 60, //下面空隙如果不夠大,圖例說明有可能看不到
plotBackgroundImage: '../graphics/skies.jpg', //(圖表的)背景圖片
plotBackgroundColor:
width: 1000, //圖框(最外層)寬(預設800)
height: 500, //圖框高(預設500)
backgroundColor: "red" //圖框的背景顏色
borderColor: "red" //圖框的邊框顏色
borderRadius: 5, //圖框的圓角大小
borderWidth: 9, //圖框的邊框大小
inverted: false, //(使圖)倒置
plotBorderColor: "red", //圖表的邊框顏色
plotBorderWidth: 0, //圖表的邊框大小
plotShadow: false, //圖表是否使用陰影效果
reflow: false,
shadow:true //圖框是否使用陰影
showAxes: false, //是否最初顯示軸
spacingTop: 100, //圖表上方的空白
spacingRight: 10,
spacingBottom: 15,
spacingLeft: 10,
colors: [...] //圖上線。。的顏色
二. credits的部分相關屬性說明
credits: //設定右下角的標記。highchart.com (這個也可以在highcharts.js裡中修改)
{
//enabled: true, //是否顯示
position: { //顯示的位置
align: 'left',
x: 10
},
text: "xoyo.com", //顯示的文字
style:{ //樣式
cursor: 'pointer',
color: 'red',
fontSize: '20px'
},
href: 'http://www.xoyo.com', //路徑
},
三. title的部分相關屬性說明
title: //標題
{
text: '月份平均溫度',
x: -20, //center //水平偏移量
y: 100 //y:垂直偏移量
align: 'right' //水平方向(left, right, bottom, top)
floating: true, //是否浮動顯示
margin: 15,
style: , //樣式
verticalAlign: "left" //垂直方向(left, right, bottom, top)
},
四. xAxis或者YAxis的部分相關屬性說明
categories: ['一月', '二月'],
//allowDecimals: false
//alternateGridColor: 'red' //在圖表中相隔出現縱向的顏色格柵
//dateTimeLabelFormats: ,
//endOnTick: false, //是否顯示控制軸末端的一個cagegories出來
//events: {
//setExtremes:
//},
//gridLineColor: "red", //縱向格線的顏色
//gridLineDashStyle: Solid //縱向格柵線條的型別
//gridLineWidth: 5, //縱向格線的的大小
//id: null,
//labels: { //X軸的標籤(下面的說明)
//align: "center", //位置
//enabled: false, //是否顯示
//formatter: ,
//rotation: 90, //旋轉,效果就是影響標籤的顯示方向
//staggerLines: 4, //標籤的交錯顯示(上、下)
//step: 2, //標籤的相隔顯示的步長
//style:{},
//x: 100, //偏移量,預設兩個都是0,
//y: 40
//},
//lineColor: "red", //X軸的顏色
//lineWidth: 5, //X軸的寬度
//linkedTo:1,
//opposite: true //是否把標籤顯示到對面
//max: 12, //顯示的最大值
//maxPadding: 6,
//maxZoom: 1,
//min: 10, //顯示的最小值
//minorGridLineColor: 'red', //副格線的顏色
//minorGridLineDashStyle: 'blod', //副格線的的顏色
//minorGridLineWidth: 50, //副格線的寬度
//minorTickColor: #A0A0A0, //???沒有看出效果
minorTickInterval:3, //副標記的間隔
//minorTickLength: 10, //副標記的長度
//minorTickPosition: 'inside', //副標記的位置
//minorTickWidth: 5, //副標記的寬
//minPadding: 0.01,
//offset: 0, //座標軸跟圖的距離
//plotBands: //使某資料塊顯示不同的效果
//plotLines: [{ //標線屬性
//value: 0, //值為0的標線
//}],
//tickmarkPlacement: "on", //標記(文字)顯示的位置,on表示在正對位置上。
//reversed: true, //是否倒置
//showFirstLabel: false, //第一個標記的數值是否顯示
//startOfWeek: 2,
//tickColor: 'blue', //標記(座標的記號)的顏色
//tickInterval: 20, //標記(座標的記號)的步長
//tickLength: 5,
//tickmarkPlacement: "on",
//tickPixelInterval: 1000, //兩座標之間的寬度
//tickPosition: "inside", //座標標記的方向
//title: { //設定座標標題的相關屬性
//margin: 40,
//rotation: 90,
//text: "Y-values",
//align: "middle",
//enabled: "middle",
//style: {color: 'red'}
//},
//type: "linear"
五.tooltip的部分相關屬性說明
tooltip: //提示框設定
{
formatter: function() { //格式化提示框的內容樣式
return '<b>'+ this.series.name +'</b><br/>'+
this.x +': '+ this.y +'°C';
},
backgroundColor: '#CCCCCC', //背景顏色
//borderColor: '#FCFFC5' //邊框顏色
//borderRadius: 2 //邊框的圓角大小
borderWidth: 3, //邊框寬度(大小)
//enabled: false, //是否顯示提示框
//shadow: false, //提示框是否應用陰影 ?沒有看出明顯效果?????????
//shared: true, //當開啟這個屬性,滑鼠幾個某一區域的時候,如果有多條線,所有的線上的據點都會有響應(ipad)
//snap: 0, //沒有看出明顯效果?????????
crosshairs: { //交叉點是否顯示的一條縱線
width: 2,
color: 'gray',
dashStyle: 'shortdot'
}
style: { //提示框內容的樣式
color: 'white',
padding: '10px', //內邊距 (這個會常用到)
fontSize: '9pt',
}
},
六.legend(圖例說明)的部分相關屬性說明
legend: //圖例說明
{
//layout: 'vertical', //圖例說明佈局(垂直顯示,預設橫向顯示)
align: 'center', //圖例說明的顯示位置
//verticalAlign: 'top', //縱向的位置
//x: 250, //偏移量
//y: 0,
borderWidth: 1, //邊框寬度
//backgroundColor: 'red' //背景顏色
borderColor: 'red',
//borderRadius //邊框圓角
//enabled: false //是否顯示圖例說明
//floating:true //是否浮動顯示(效果就是會不會顯示到圖中)
//itemHiddenStyle: {color: 'red'},
//itemHoverStyle: {color: 'red'} //滑鼠放到某一圖例說明上,文字顏色的變化顏色
//itemStyle: {color: 'red'} //圖例說明的樣式
//itemWidth: //圖例說明的寬度
//labelFormatter: function() { return this.value} //?????????????預設(return this.name)
//lineHeight: 1000 //沒看出明顯效果
//margin: 20
//reversed:true //圖例說明的順序(是否反向)
//shadow:true //陰影
//style: {color:'black'}
//symbolPadding: 100 //標誌(線)跟文字的距離
//symbolWidth: 100 //標誌的寬
//width:100
},
七. plotOptions的部分修改屬性說明
plotOptions: (我這個是在柱形圖上做的測試)
{
column: //柱形圖
{
//pointPadding: 0.2,
//borderWidth: 1, //柱子邊框的大小
//borderColor: "red", //柱子邊框的顏色
//borderRadius: 180, //柱子兩端的圓角的半徑
//colorByPoint: true, //否應該接受每系列的一種顏色或每點一種顏色
groupPadding: 0, //每一組柱子之間的間隔(會影響到柱子的大小)
//minPointLength: 0, //最小資料值那一條柱子的長度(如果是0,可能看不到,可以設定出來)
//pointPadding: 0.1, //柱子之間的間隔(會影響到柱子的大小)
//pointWidth: 2, //柱子的大小(會影響到柱子的大小)
//allowPointSelect: false,
//animation: true, //圖形出來時候的動畫
//color: 'red', //柱子的顏色
//connectNulls: false, //連線圖表是否忽略零點(如線形圖,資料為0是是否忽略)
//cursor: '', //?????????遊標
//dashStyle: null,
dataLabels: { //圖上是否顯示資料標籤
//enabled: true,
align: "center",
//color: 'red',
formatter: function()
{
return this.y + 'mm'
},
rotation: 270,
//staggerLines: 0,
//step: ,
//style: ,
//x: 0,
//y: -6
},
//enableMouseTracking:
events: { //事件
click: function(event)
{
alert(this.name);
},
//checkboxClick: ,
//hide: ,
//legendItemClick: ,
//mouseOver: ,
//mouseOut: ,
//show:
},
//id: null,
//lineWidth: 20,
//marker: { //圖例說明上的標誌
//enabled: false
//},
point: { //圖上的資料點(這個線上形圖可能就直觀)
events: {
click: function()
{
alert(this.y);
},
//mouseOver: ,
//mouseOut: ,
//remove: ,
//select: ,
//unselect: ,
//update:
}
},
//pointStart: 0, //顯示圖資料點開始值
//pointInterval: 1, //顯示圖資料點的間隔
//selected: false,
//shadow: true,
//showCheckbox: true, //是否顯示(圖例說明的)複選框
//showInLegend: false, //是否顯示圖例說明
//stacking: 'percent', //是否堆積???
states:
{
hover:
{
//brightness: 0.1,
enabled: true, //圖上的資料點標誌是否顯示
//lineWidth: 2, //沒看出效果
marker:
{
//states: ,
//enabled: true, //資料點標誌是否顯示
//fillColor: null, //資料點標誌填充的顏色
//lineColor: "#FFFFFF", //資料點標誌線的顏色
//lineWidth: 0, //資料點標誌線的大小
//radius: 45, //資料點標誌半徑
//symbol: 'triangle'//'url(http://highcharts.com/demo/gfx/sun.png)' //資料點標誌形狀(triangle三角形,或者用圖片等等)
}
}
},
//stickyTracking: true, //軌道粘性 (例如線圖,如果這個設定為否定,那就必須點到資料點才有反應)
//visible: true, //設定為false就不顯示圖
//zIndex: null //沒有看出效果???
},
相關推薦
Highcharts一些屬性
一.chart的部分相關屬性說明 renderTo: 'container', //圖表的頁面顯示容器(也就是要顯示到的div) defaultSeriesType: 'line', //圖表型別(line、spline、scatter、splinearea、bar、pie、area、column)
Highcharts的一些屬性
font false sha height form pos tlab percent nth <!DOCTYPE html> <html> <head> <meta charset="UTF-8">
ios 自定義鍵盤的return鍵以及鍵盤的其他一些屬性
variable 位置 arch ext ddr gin character 觸發 hone //初始化textfield並設置位置及大小 UITextField *text = [[UITextField alloc]initWithFrame:CGRectMake(20
yii2.0中yiiaseApplication的一些屬性
one all ron 名稱 def 運行 第三方庫 yii2 臨時文件 必要屬性 yii\base\Application::id 區分其他應用的唯一標識ID yii\base\Application::basePath 該應用的根目錄 其他屬性 yii\ba
PopupWindow的一些屬性
table space whether right window pos eve content code void setOutsideTouchable(boolean touchable) Controls whethe
做前端靜態頁面可以用到的一些屬性
自身 設置 頁面 邊框陰影 邊框 borde color 外邊距 圓角 border-radius 邊框圓角 像素和百分比 box-shadow 邊框陰影 b
video標簽在移動端的一些屬性值設置
屬性 port splay -o fit post pos bsp color <video x5-video-orientation="portraint" src="" loop x-webkit-
bootstrap的一些屬性作用
選擇器 strong pan 簡單的 -c 指定 應該 表示 NPU bootstrap中的data-[*]屬性 data屬性包括兩部分: 1.屬性名不應該包含任何大寫字母,並且在前綴“data-”之後必須至少有一個字符 2.*屬性值
Selenium的一些屬性的獲取
name .get attr play import .com port 爬蟲 ext from selenium import webdriverdriver = webdriver.Chrome()driver.get(‘http://www.baidu.com‘)dr
html/css/js-個人容易忘的一些屬性
1.當div裡面的文字超過給定div給定的寬度,div裡面的文字自動換行 word-break:break-all;會截斷改行最後的單詞 word-wrap:break-wo
Button一些屬性和幾種監聽事件
介紹: TextView與Button是繼承關係,Button繼承自TextView。開發中一般情況下,TextView用來承載靜態文字,Button用來響應點選事件。很多人容易忽略的一點是TextVIew也有點選事件,TextView 繼承自View,點選事件是從View就有的特性,所以Tex
SlidingMenu常用的一些屬性設定
menu.setMode(SlidingMenu.LEFT);//設定左滑選單 menu.setTouchModeAbove(SlidingMenu.TOUCHMODE_FULLSCREEN);//設定滑動的螢幕範圍,該設定為全屏區域都可以滑動 menu.setShadowDrawable(R.
Android中控制元件AutoCompleteTextView的使用方法和一些屬性
AutoCompleteTextView一些屬性 <!--completionThreshold:它的值決定了你在AutoCompleteTextView至少輸入幾個字元,它才會具有自動提示的功能--> <!--dropDownWidth設定提示框的寬度-
(七)Flutter 佈局 建立小部件 自定義view 關於佈局的一些屬性 mainAxis SizeBox Alignment stack AspectRatio ConstrainedBox
主要內容 建立LayoutDemo小部件 建立可配置圖示徽章IconBadege 小部件 Row與Column mainAxis:主軸與crossAxis 交叉軸 SizeBox 固定尺寸的盒子 Alignment 對齊 stack 一摞小部件
小程式獲取元素的一些屬性
let query = wx.createSelectorQuery() query.select('#canvas').boundingClientRect(res => { this.canvasWidth = Math.roun
AndroidManifest.xml一些屬性介紹
首先說明一下task這個概念,Task可以認為是一個棧,可放入多個Activity。比如啟動一個應用,那麼Android就建立了一個Task,然後啟動這個應用的入口Activity,那在它的介面上呼叫其他的Activity也只是在這個task裡面。那如果在多個task中共享一
如何使用set來設定按鈕的大小和位置,以及一些屬性
b1 = new Button("go on"); //宣告一個按鍵 Frame f = new Frame("bu"); f.setLayout(null); f.setSize(300
javaScript的一些屬性
<html> <head><script type="text/javascript">function ArgTest(){ var i, s, numargs = arguments.length; s = numargs;
TextView的跑馬燈效果以及TextView的一些屬性
TextView應該是用的最廣的控制元件了,要是這句話不對我直播吃翔,這幾天的專案用到跑馬燈,居然忘記怎麼設定了,還要Google才能解決,看來雖然很基本的東西,但是用的少還是容易遺忘,所以我決定把它寫下來加深點印象,方便以後查詢 具體效果 : 佈局檔案 <R
Android自定義可移動懸浮窗,WindowManager.LayoutParams一些屬性介紹
效果圖 thanks 首先介紹一下常見的WindowManager.LayoutParams常量屬性 layoutParams.flag int型別 常量介紹 FLAGS_CHANGED 用於表示fl