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
f872cbb9
Commit
f872cbb9
authored
Jan 31, 2019
by
Sascha Herzinger
Browse files
more eye candy
parent
58b7b9e7
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/charts/impl/Scatterplot.js
View file @
f872cbb9
...
...
@@ -194,7 +194,7 @@ export default class extends Chart {
.
text
(
this
.
title
);
const
point
=
this
.
memory
.
selectAll
(
'
circle
'
)
.
data
(
this
.
values
,
d
=>
`
${
d
[
0
]}
:
${
d
[
1
]}
:
${
d
[
2
]}
`
);
.
data
(
this
.
values
);
point
.
enter
()
.
append
(
'
circle
'
)
...
...
@@ -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-category
'
,
d
=>
d
[
2
]
)
.
style
(
'
opacity
'
,
d
=>
((
typeof
_selectedCategory
!==
'
undefined
'
&&
d
[
2
]
!==
_selectedCategory
)
?
0.3
:
1
)
)
.
attr
(
'
r
'
,
Math
.
ceil
(
width
/
150
))
.
attr
(
'
fillStyle
'
,
d
=>
color
(
d
[
2
]))
.
attr
(
'
title
'
,
d
=>
`
...
...
@@ -278,9 +278,9 @@ ${!categoryKeys ? d[2] : this.categories[d[2]]}</br>
.
merge
(
legendElement
)
.
on
(
'
click
'
,
(
d
)
=>
{
if
(
d
===
_selectedCategory
)
{
this
.
render
({
_skipAnimation
:
tru
e
});
this
.
render
({
_skipAnimation
:
fals
e
});
}
else
{
this
.
render
({
_selectedCategory
:
d
,
_skipAnimation
:
tru
e
});
this
.
render
({
_selectedCategory
:
d
,
_skipAnimation
:
fals
e
});
}
})
.
style
(
'
opacity
'
,
d
=>
((
typeof
_selectedCategory
===
'
undefined
'
||
d
===
_selectedCategory
)
?
1
:
0.3
));
...
...
@@ -318,11 +318,7 @@ ${!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
.
globalAlpha
=
node
.
style
.
opacity
;
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