Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Sascha Herzinger
AdaCharts
Commits
58b7b9e7
Commit
58b7b9e7
authored
Jan 31, 2019
by
Sascha Herzinger
Browse files
visual improvements
parent
aa4e0708
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/charts/impl/Scatterplot.js
View file @
58b7b9e7
...
...
@@ -206,7 +206,7 @@ export default class extends Chart {
.
delay
((
_
,
i
)
=>
i
*
(
ANIMATION_DURATION
/
this
.
values
.
length
))
.
attr
(
'
dx
'
,
d
=>
x
(
d
[
0
]))
.
attr
(
'
dy
'
,
d
=>
y
(
d
[
1
]))
.
attr
(
'
data-
z
'
,
d
=>
d
[
2
])
.
attr
(
'
data-
category
'
,
d
=>
d
[
2
])
.
attr
(
'
r
'
,
Math
.
ceil
(
width
/
150
))
.
attr
(
'
fillStyle
'
,
d
=>
color
(
d
[
2
]))
.
attr
(
'
title
'
,
d
=>
`
...
...
@@ -302,7 +302,6 @@ ${!categoryKeys ? d[2] : this.categories[d[2]]}</br>
.
remove
();
const
nodes
=
this
.
memory
.
selectAll
(
'
circle
'
)
.
filter
(
d
=>
typeof
_selectedCategory
===
'
undefined
'
||
d
[
2
]
===
_selectedCategory
)
.
nodes
();
const
ctx
=
this
.
canvas
.
node
().
getContext
(
'
2d
'
);
...
...
@@ -319,6 +318,11 @@ ${!categoryKeys ? d[2] : this.categories[d[2]]}</br>
2
*
Math
.
PI
,
false
,
);
ctx
.
globalAlpha
=
1
;
if
(
typeof
_selectedCategory
!==
'
undefined
'
&&
parseInt
(
node
.
getAttribute
(
'
data-category
'
),
10
)
!==
_selectedCategory
)
{
ctx
.
globalAlpha
=
0.2
;
}
ctx
.
fillStyle
=
node
.
getAttribute
(
'
fillStyle
'
);
ctx
.
fill
();
ctx
.
strokeStyle
=
'
#fff
'
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment