Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
c3-closed
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Evgeny
c3-closed
Commits
54c456e1
Commit
54c456e1
authored
Apr 30, 2014
by
Masayuki Tanaka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Refactor point radius - #179
parent
3b4c5008
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
13 deletions
+25
-13
c3.js
c3.js
+25
-13
c3.min.js
c3.min.js
+0
-0
No files found.
c3.js
View file @
54c456e1
...
...
@@ -217,11 +217,11 @@
// point - point of each data
var
__point_show
=
getConfig
([
'point'
,
'show'
],
true
),
__point_r
=
__point_show
?
getConfig
([
'point'
,
'r'
],
2.5
)
:
0
,
__point_r
=
getConfig
([
'point'
,
'r'
],
2.5
)
,
__point_focus_line_enabled
=
getConfig
([
'point'
,
'focus'
,
'line'
,
'enabled'
],
true
),
__point_focus_expand_enabled
=
getConfig
([
'point'
,
'focus'
,
'expand'
,
'enabled'
],
true
),
__point_focus_expand_r
=
getConfig
([
'point'
,
'focus'
,
'expand'
,
'r'
]
,
__point_focus_expand_enabled
?
4
:
__point_r
),
__point_select_r
=
getConfig
([
'point'
,
'focus'
,
'select'
,
'r'
]
,
8
);
__point_focus_expand_r
=
getConfig
([
'point'
,
'focus'
,
'expand'
,
'r'
]),
__point_select_r
=
getConfig
([
'point'
,
'focus'
,
'select'
,
'r'
]);
var
__line_connect_null
=
getConfig
([
'line'
,
'connect_null'
],
false
);
...
...
@@ -2244,9 +2244,9 @@
.
attr
(
"cx"
,
__axis_rotated
?
circleY
:
circleX
)
.
attr
(
"cy"
,
__axis_rotated
?
circleX
:
circleY
)
.
attr
(
"stroke"
,
function
()
{
return
color
(
d
);
})
.
attr
(
"r"
,
__point_select_r
*
1.4
)
.
attr
(
"r"
,
pointSelectR
(
d
)
*
1.4
)
.
transition
().
duration
(
100
)
.
attr
(
"r"
,
__point_select_r
);
.
attr
(
"r"
,
pointSelectR
);
}
function
unselectPoint
(
target
,
d
,
i
)
{
__data_onunselected
(
d
,
target
.
node
());
...
...
@@ -2275,6 +2275,18 @@
return
data
.
filter
(
function
(
d
)
{
return
isValue
(
d
.
value
);
});
}
//-- Point --//
function
pointR
(
d
)
{
return
__point_show
?
(
typeof
__point_r
===
'function'
?
__point_r
(
d
)
:
__point_r
)
:
0
;
}
function
pointExpandedR
(
d
)
{
return
__point_focus_expand_enabled
?
(
__point_focus_expand_r
?
__point_focus_expand_r
:
pointR
(
d
)
*
1.75
)
:
pointR
(
d
);
}
function
pointSelectR
(
d
)
{
return
__point_select_r
?
__point_select_r
:
pointR
(
d
)
*
4
;
}
//-- Shape --//
function
getCircles
(
i
,
id
)
{
...
...
@@ -2283,13 +2295,13 @@
function
expandCircles
(
i
,
id
)
{
getCircles
(
i
,
id
)
.
classed
(
CLASS
.
EXPANDED
,
true
)
.
attr
(
'r'
,
__point_focus_expand_r
);
.
attr
(
'r'
,
pointExpandedR
);
}
function
unexpandCircles
(
i
)
{
getCircles
(
i
)
.
filter
(
function
()
{
return
d3
.
select
(
this
).
classed
(
CLASS
.
EXPANDED
);
})
.
classed
(
CLASS
.
EXPANDED
,
false
)
.
attr
(
'r'
,
__point_r
);
.
attr
(
'r'
,
pointR
);
}
function
getBars
(
i
)
{
return
main
.
selectAll
(
'.'
+
CLASS
.
bar
+
(
isValue
(
i
)
?
'-'
+
i
:
''
));
...
...
@@ -2899,12 +2911,12 @@
.
filter
(
function
(
d
)
{
return
__data_selection_isselectable
(
d
);
})
.
each
(
function
()
{
var
_this
=
d3
.
select
(
this
).
classed
(
CLASS
.
EXPANDED
,
true
);
if
(
this
.
nodeName
===
'circle'
)
{
_this
.
attr
(
'r'
,
__point_focus_expand_r
);
}
if
(
this
.
nodeName
===
'circle'
)
{
_this
.
attr
(
'r'
,
pointExpandedR
);
}
svg
.
select
(
'.'
+
CLASS
.
eventRect
+
'-'
+
i
).
style
(
'cursor'
,
null
);
})
.
filter
(
function
()
{
.
filter
(
function
(
d
)
{
if
(
this
.
nodeName
===
'circle'
)
{
return
isWithinCircle
(
this
,
__point_select_r
);
return
isWithinCircle
(
this
,
pointSelectR
(
d
)
);
}
else
if
(
this
.
nodeName
===
'path'
)
{
return
isWithinBar
(
this
);
...
...
@@ -2914,7 +2926,7 @@
var
_this
=
d3
.
select
(
this
);
if
(
!
_this
.
classed
(
CLASS
.
EXPANDED
))
{
_this
.
classed
(
CLASS
.
EXPANDED
,
true
);
if
(
this
.
nodeName
===
'circle'
)
{
_this
.
attr
(
'r'
,
__point_select_r
);
}
if
(
this
.
nodeName
===
'circle'
)
{
_this
.
attr
(
'r'
,
pointSelectR
);
}
}
svg
.
select
(
'.'
+
CLASS
.
eventRect
+
'-'
+
i
).
style
(
'cursor'
,
'pointer'
);
});
...
...
@@ -3027,7 +3039,7 @@
isSelected
=
shape
.
classed
(
CLASS
.
SELECTED
);
var
isWithin
=
false
,
toggle
;
if
(
target
.
nodeName
===
'circle'
)
{
isWithin
=
isWithinCircle
(
target
,
__point_select_r
*
1.5
);
isWithin
=
isWithinCircle
(
target
,
pointSelectR
(
d
)
*
1.5
);
toggle
=
togglePoint
;
}
else
if
(
target
.
nodeName
===
'path'
)
{
...
...
@@ -3425,7 +3437,7 @@
mainCircle
.
enter
().
append
(
"circle"
)
.
attr
(
"class"
,
classCircle
)
.
style
(
'opacity'
,
0
)
.
attr
(
"r"
,
__point_r
);
.
attr
(
"r"
,
pointR
);
mainCircle
.
style
(
"opacity"
,
initialOpacity
)
.
transition
().
duration
(
duration
)
...
...
c3.min.js
View file @
54c456e1
This source diff could not be displayed because it is too large. You can
view the blob
instead.
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