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
charts
c3-closed
Commits
429b0d26
Commit
429b0d26
authored
May 09, 2013
by
Masayuki Tanaka
Committed by
masayuki
May 09, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix dom insertion when multi chart type
parent
a3dc7d23
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
27 additions
and
20 deletions
+27
-20
c3.js
c3.js
+27
-20
No files found.
c3.js
View file @
429b0d26
...
@@ -378,10 +378,12 @@
...
@@ -378,10 +378,12 @@
}
}
return
false
;
return
false
;
}
}
function
isLineType
(
id
)
{
function
isLineType
(
d
)
{
var
id
=
(
typeof
d
===
'string'
)
?
d
:
d
.
id
;
return
!
(
id
in
__data_types
)
||
__data_types
[
id
]
===
'line'
;
return
!
(
id
in
__data_types
)
||
__data_types
[
id
]
===
'line'
;
}
}
function
isBarType
(
id
)
{
function
isBarType
(
d
)
{
var
id
=
(
typeof
d
===
'string'
)
?
d
:
d
.
id
;
return
__data_types
[
id
]
===
'bar'
;
return
__data_types
[
id
]
===
'bar'
;
}
}
function
category
(
i
)
{
function
category
(
i
)
{
...
@@ -863,24 +865,24 @@
...
@@ -863,24 +865,24 @@
}
}
// lines and cricles
// lines and cricles
mainPath
=
main
.
selectAll
(
'.target'
).
selectAll
(
'
path'
);
mainPath
=
main
.
selectAll
(
'.target'
).
selectAll
(
'
.target-line'
).
filter
(
isLineType
);
if
(
withTransition
)
mainPath
=
mainPath
.
transition
();
if
(
withTransition
)
mainPath
=
mainPath
.
transition
();
mainPath
.
attr
(
"d"
,
function
(
d
)
{
return
lineWithRegions
(
d
.
values
,
__data_regions
[
d
.
id
]);
});
mainPath
.
attr
(
"d"
,
function
(
d
)
{
return
lineWithRegions
(
d
.
values
,
__data_regions
[
d
.
id
]);
});
mainCircle
=
main
.
selectAll
(
'.target'
).
selectAll
(
'
circle'
);
mainCircle
=
main
.
selectAll
(
'.target'
).
selectAll
(
'
.target-circle'
).
filter
(
isLineType
);
if
(
withTransition
)
mainCircle
=
mainCircle
.
transition
();
if
(
withTransition
)
mainCircle
=
mainCircle
.
transition
();
mainCircle
.
attr
(
"cx"
,
function
(
d
)
{
return
x
(
d
.
x
);
})
mainCircle
.
attr
(
"cx"
,
function
(
d
)
{
return
x
(
d
.
x
);
})
.
attr
(
"cy"
,
function
(
d
)
{
return
y
(
d
.
value
);
});
.
attr
(
"cy"
,
function
(
d
)
{
return
y
(
d
.
value
);
});
// bars
// bars
barWidth
=
(
xAxis
.
tickOffset
()
*
2
*
0.6
)
/
targetsNum
;
barWidth
=
(
xAxis
.
tickOffset
()
*
2
*
0.6
)
/
targetsNum
;
mainBar
=
main
.
selectAll
(
'.target'
).
selectAll
(
'
rect.target-bar'
);
mainBar
=
main
.
selectAll
(
'.target'
).
selectAll
(
'
.target-bar'
).
filter
(
isBarType
);
if
(
withTransition
)
mainBar
=
mainBar
.
transition
();
if
(
withTransition
)
mainBar
=
mainBar
.
transition
();
mainBar
.
attr
(
"width"
,
barWidth
)
mainBar
.
attr
(
"width"
,
barWidth
)
.
attr
(
"x"
,
function
(
d
){
return
x
(
d
.
x
)
-
barWidth
*
(
targetsNum
/
2
-
d
.
i
);
});
.
attr
(
"x"
,
function
(
d
){
return
x
(
d
.
x
)
-
barWidth
*
(
targetsNum
/
2
-
d
.
i
);
});
// subchart
// subchart
if
(
__subchart_show
)
{
if
(
__subchart_show
)
{
contextPath
=
context
.
selectAll
(
'.target'
).
selectAll
(
'path'
);
contextPath
=
context
.
selectAll
(
'.target'
).
selectAll
(
'path'
)
.
filter
(
isLineType
)
;
if
(
withTransition
)
contextPath
=
contextPath
.
transition
();
if
(
withTransition
)
contextPath
=
contextPath
.
transition
();
contextPath
.
attr
(
"d"
,
function
(
d
){
return
line2
(
d
.
values
);
});
contextPath
.
attr
(
"d"
,
function
(
d
){
return
line2
(
d
.
values
);
});
}
}
...
@@ -918,9 +920,9 @@
...
@@ -918,9 +920,9 @@
// Lines for each data
// Lines for each data
f
.
append
(
"path"
)
f
.
append
(
"path"
)
.
attr
(
"class"
,
function
(
d
){
return
"target-line target-line-"
+
d
.
id
;
})
.
attr
(
"class"
,
function
(
d
){
return
"target-line target-line-"
+
d
.
id
;
})
.
attr
(
"d"
,
function
(
d
){
return
lineWithRegions
(
d
.
values
,
__data_regions
[
d
.
id
]);
})
.
style
(
"stroke"
,
function
(
d
)
{
return
color
(
d
.
id
);
})
.
style
(
"stroke"
,
function
(
d
)
{
return
color
(
d
.
id
);
})
.
style
(
"opacity"
,
function
(
d
){
return
isLineType
(
d
.
id
)
?
1
:
0
;
});
.
filter
(
isLineType
)
.
attr
(
"d"
,
function
(
d
){
return
lineWithRegions
(
d
.
values
,
__data_regions
[
d
.
id
]);
});
// Circles for each data point on lines
// Circles for each data point on lines
f
.
append
(
'g'
)
f
.
append
(
'g'
)
...
@@ -929,8 +931,9 @@
...
@@ -929,8 +931,9 @@
.
attr
(
"class"
,
function
(
d
){
return
"target-circles target-circles-"
+
d
.
id
;
})
.
attr
(
"class"
,
function
(
d
){
return
"target-circles target-circles-"
+
d
.
id
;
})
.
style
(
"fill"
,
function
(
d
)
{
return
color
(
d
.
id
);
})
.
style
(
"fill"
,
function
(
d
)
{
return
color
(
d
.
id
);
})
.
style
(
"cursor"
,
function
(
d
){
return
__data_selection_isselectable
(
d
)
?
"pointer"
:
null
;
})
.
style
(
"cursor"
,
function
(
d
){
return
__data_selection_isselectable
(
d
)
?
"pointer"
:
null
;
})
.
filter
(
isLineType
)
.
selectAll
(
"circle"
)
.
selectAll
(
"circle"
)
.
data
(
function
(
d
)
{
return
d
.
values
;
})
.
data
(
function
(
d
){
return
d
.
values
;
})
.
enter
().
append
(
"circle"
)
.
enter
().
append
(
"circle"
)
.
attr
(
"class"
,
function
(
d
,
i
){
return
"target-circle target-circle-"
+
i
;
})
.
attr
(
"class"
,
function
(
d
,
i
){
return
"target-circle target-circle-"
+
i
;
})
.
attr
(
"cx"
,
function
(
d
)
{
return
x
(
d
.
x
);
})
.
attr
(
"cx"
,
function
(
d
)
{
return
x
(
d
.
x
);
})
...
@@ -944,14 +947,14 @@
...
@@ -944,14 +947,14 @@
togglePoint
(
!
_selected
,
_this
,
d
,
i
);
togglePoint
(
!
_selected
,
_this
,
d
,
i
);
}
}
__point_onclick
(
d
,
_this
);
__point_onclick
(
d
,
_this
);
})
});
.
style
(
"opacity"
,
function
(
d
){
return
isLineType
(
d
.
id
)
?
1
:
0
;
});
// Rects for each data
// Rects for each data
barWidth
=
(
xAxis
.
tickOffset
()
*
2
*
0.6
)
/
targetsNum
;
barWidth
=
(
xAxis
.
tickOffset
()
*
2
*
0.6
)
/
targetsNum
;
f
.
append
(
'g'
)
f
.
append
(
'g'
)
.
attr
(
"class"
,
function
(
d
){
return
"target-bars target-bars-"
+
d
.
id
;
})
.
attr
(
"class"
,
function
(
d
){
return
"target-bars target-bars-"
+
d
.
id
;
})
.
style
(
"fill"
,
function
(
d
){
return
color
(
d
.
id
);
})
.
style
(
"fill"
,
function
(
d
){
return
color
(
d
.
id
);
})
.
filter
(
isBarType
)
.
selectAll
(
"bar"
)
.
selectAll
(
"bar"
)
.
data
(
function
(
d
){
return
d
.
values
;
})
.
data
(
function
(
d
){
return
d
.
values
;
})
.
enter
().
append
(
"rect"
)
.
enter
().
append
(
"rect"
)
...
@@ -959,17 +962,19 @@
...
@@ -959,17 +962,19 @@
.
attr
(
"x"
,
function
(
d
){
return
x
(
d
.
x
)
-
barWidth
*
(
targetsNum
/
2
-
d
.
i
);
})
.
attr
(
"x"
,
function
(
d
){
return
x
(
d
.
x
)
-
barWidth
*
(
targetsNum
/
2
-
d
.
i
);
})
.
attr
(
"y"
,
function
(
d
){
return
y
(
d
.
value
);
})
.
attr
(
"y"
,
function
(
d
){
return
y
(
d
.
value
);
})
.
attr
(
"width"
,
barWidth
)
.
attr
(
"width"
,
barWidth
)
.
attr
(
"height"
,
function
(
d
){
return
height
-
y
(
d
.
value
);
})
.
attr
(
"height"
,
function
(
d
){
return
height
-
y
(
d
.
value
);
});
.
style
(
"opacity"
,
function
(
d
){
return
isBarType
(
d
.
id
)
?
1
:
0
;
});
//-- Main Update Section --//
// Update Section
main
.
selectAll
(
'.target-line'
)
main
.
selectAll
(
'.target-line'
)
.
data
(
targets
)
.
data
(
targets
)
.
filter
(
isLineType
)
.
transition
()
.
transition
()
.
attr
(
"d"
,
function
(
d
){
return
lineWithRegions
(
d
.
values
,
__data_regions
[
d
.
id
]);
});
.
attr
(
"d"
,
function
(
d
){
return
lineWithRegions
(
d
.
values
,
__data_regions
[
d
.
id
]);
});
main
.
selectAll
(
'.target-circles'
)
main
.
selectAll
(
'.target-circles'
)
.
data
(
targets
)
.
data
(
targets
)
.
filter
(
isLineType
)
.
selectAll
(
'circle'
)
.
selectAll
(
'circle'
)
.
data
(
function
(
d
)
{
return
d
.
values
;
})
.
data
(
function
(
d
)
{
return
d
.
values
;
})
.
transition
()
.
transition
()
...
@@ -989,15 +994,16 @@
...
@@ -989,15 +994,16 @@
// Lines for each data
// Lines for each data
c
.
append
(
"path"
)
c
.
append
(
"path"
)
.
attr
(
"class"
,
function
(
d
){
return
"target-line target-line-"
+
d
.
id
;
})
.
attr
(
"class"
,
function
(
d
){
return
"target-line target-line-"
+
d
.
id
;
})
.
attr
(
"d"
,
function
(
d
)
{
return
line2
(
d
.
values
);
})
.
style
(
"stroke"
,
function
(
d
)
{
return
color
(
d
.
id
);
})
.
style
(
"stroke"
,
function
(
d
)
{
return
color
(
d
.
id
);
})
.
style
(
"opacity"
,
function
(
d
){
return
isLineType
(
d
.
id
)
?
1
:
0
;
});
.
filter
(
isLineType
)
.
attr
(
"d"
,
function
(
d
)
{
return
line2
(
d
.
values
);
});
// Rects for each data
// Rects for each data
bar2Width
=
(
xAxis2
.
tickOffset
()
*
2
*
0.6
)
/
targetsNum
;
bar2Width
=
(
xAxis2
.
tickOffset
()
*
2
*
0.6
)
/
targetsNum
;
c
.
append
(
'g'
)
c
.
append
(
'g'
)
.
attr
(
"class"
,
function
(
d
){
return
"target-bars target-bars-"
+
d
.
id
;
})
.
attr
(
"class"
,
function
(
d
){
return
"target-bars target-bars-"
+
d
.
id
;
})
.
style
(
"fill"
,
function
(
d
){
return
color
(
d
.
id
);
})
.
style
(
"fill"
,
function
(
d
){
return
color
(
d
.
id
);
})
.
filter
(
isBarType
)
.
selectAll
(
"bar"
)
.
selectAll
(
"bar"
)
.
data
(
function
(
d
){
return
d
.
values
;
})
.
data
(
function
(
d
){
return
d
.
values
;
})
.
enter
().
append
(
"rect"
)
.
enter
().
append
(
"rect"
)
...
@@ -1005,12 +1011,13 @@
...
@@ -1005,12 +1011,13 @@
.
attr
(
"x"
,
function
(
d
){
return
x2
(
d
.
x
)
-
bar2Width
*
(
targetsNum
/
2
-
d
.
i
);
})
.
attr
(
"x"
,
function
(
d
){
return
x2
(
d
.
x
)
-
bar2Width
*
(
targetsNum
/
2
-
d
.
i
);
})
.
attr
(
"y"
,
function
(
d
){
return
y2
(
d
.
value
);
})
.
attr
(
"y"
,
function
(
d
){
return
y2
(
d
.
value
);
})
.
attr
(
"width"
,
bar2Width
)
.
attr
(
"width"
,
bar2Width
)
.
attr
(
"height"
,
function
(
d
){
return
height2
-
y2
(
d
.
value
);
})
.
attr
(
"height"
,
function
(
d
){
return
height2
-
y2
(
d
.
value
);
});
.
style
(
"opacity"
,
function
(
d
){
return
isBarType
(
d
.
id
)
?
1
:
0
;
});
//-- Context Update Section --//
// Update Section
context
.
selectAll
(
'.target-line'
)
context
.
selectAll
(
'.target-line'
)
.
data
(
targets
)
.
data
(
targets
)
.
filter
(
isLineType
)
.
transition
()
.
transition
()
.
attr
(
"d"
,
function
(
d
)
{
return
line2
(
d
.
values
);
});
.
attr
(
"d"
,
function
(
d
)
{
return
line2
(
d
.
values
);
});
}
}
...
...
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