@@ -4,12 +4,8 @@ export default function install({use, utils, registerNodeType, BaseSprite}) {
4
4
const container = document . createElement ( 'canvas' ) ;
5
5
const layer = this . layer ;
6
6
7
- const pixelRatioX = layer . resolution [ 0 ] / layer . viewport [ 0 ] ;
8
- const pixelRatioY = layer . resolution [ 1 ] / layer . viewport [ 1 ] ;
9
- container . width = w / pixelRatioX ;
10
- container . height = h / pixelRatioY ;
11
-
12
- this . pixelRatio = [ pixelRatioX , pixelRatioY ] ;
7
+ container . width = w / 2 ;
8
+ container . height = h / 2 ;
13
9
14
10
const chart = echarts . init ( container ) ;
15
11
@@ -28,8 +24,8 @@ export default function install({use, utils, registerNodeType, BaseSprite}) {
28
24
const originalEvent = e . originalEvent ;
29
25
const anchor = this . attr ( 'anchor' ) ;
30
26
const cz = this . clientSize ;
31
- const offsetX = ( e . offsetX + anchor [ 0 ] * cz [ 0 ] ) / pixelRatioX ;
32
- const offsetY = ( e . offsetY + anchor [ 1 ] * cz [ 1 ] ) / pixelRatioY ;
27
+ const offsetX = ( e . offsetX + anchor [ 0 ] * cz [ 0 ] ) / 2 ;
28
+ const offsetY = ( e . offsetY + anchor [ 1 ] * cz [ 1 ] ) / 2 ;
33
29
let type = originalEvent . type ;
34
30
if ( type === 'mouseleave' ) type = 'mouseout' ;
35
31
const newEvent = new MouseEvent ( originalEvent . type , {
@@ -49,10 +45,9 @@ export default function install({use, utils, registerNodeType, BaseSprite}) {
49
45
srcElement : originalEvent . srcElement ,
50
46
target : originalEvent . target ,
51
47
toElement : originalEvent . toElement ,
52
- view : originalEvent . view ,
48
+ // view: originalEvent.view,
53
49
which : originalEvent . witch ,
54
50
} ) ;
55
-
56
51
this . chart . getDom ( ) . dispatchEvent ( newEvent ) ;
57
52
} ;
58
53
@@ -77,9 +72,10 @@ export default function install({use, utils, registerNodeType, BaseSprite}) {
77
72
const canvas = this . chart . getRenderedCanvas ( { pixelRatio : 2 } ) ;
78
73
79
74
if ( w !== canvas . width || h !== canvas . height ) {
80
- const width = w / this . pixelRatio [ 0 ] ;
81
- const height = h / this . pixelRatio [ 1 ] ;
75
+ const width = w / 2 ;
76
+ const height = h / 2 ;
82
77
this . chart . resize ( { width, height} ) ;
78
+ console . log ( 'resize' ) ;
83
79
}
84
80
drawingContext . drawImage ( canvas , 0 , 0 , w , h ) ;
85
81
}
0 commit comments