重要股东增持与PB分位变化
图
微信
Loading...
区间选择
方向
坚持类型
展示数量
类别
确定
重要股东增持与PB分位变化
更新频率:weekly
展示重要股东增持与PB分位变化。
var NAME = data1[0].TYPE var SU = data1[0].suffix var T = data1[0].TITLE Highcharts.chart('container', { chart: { type:'scatter', }, xAxis: { title: { enabled: true, text: '区间'+NAME }, // max: 100, // min: 0, endOnTick: true, showLastLabel: true, // plotLines:[{ // color: 'red', // dashStyle: 'dot', // value: reference2, // width: 1, // zIndex: 3, // }], labels:{ formatter: function(){return Math.round(this.value*100)/100 + SU;} }, }, yAxis: [{ title: { enabled: true, text: 'PB分位' }, // max: 105, // min: 0, gridLineWidth: 0, lineWidth: 1, lineColor: '#bfbfbf', tickWidth: 1, tickLength: 5, tickColor: '#bfbfbf', endOnTick: false, startOnTick: false, // plotLines:[{ // color: 'black', // dashStyle: 'dot', // value: reference1, // width: 1, // zIndex: 3, // }], labels:{ formatter: function(){return Math.round(this.value) + '%';} }, opposite: false, }], plotOptions: { scatter: { tooltip:{ pointFormatter: function() { var res; res = [ '
', this.SEC_NAME, '(', this.TRADE_CODE,') ', new Date(this.END).toLocaleDateString(),'
', '
',NAME,':
' ,'
',Math.round(this.x*100) / 100,SU,'
', '
PB分位:
' , '
',Math.round(this.y*100) / 100,'%
',].join(''); return res; }, }, dataLabels: { enabled: true, allowOverlap: false, formatter: function(){ // console.log(this); return this.point.SEC_NAME; }, } }, }, subtitle: { text: T }, legend:{ enabled:false, }, series: [{ data: data0, name: NAME+"与PB分位", zIndex: 1, }], });