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
916074d3
Commit
916074d3
authored
Jun 06, 2014
by
Masayuki Tanaka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update index.html for samples
parent
3c2a4c83
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
22 additions
and
40 deletions
+22
-40
index.css
htdocs/css/index.css
+13
-0
index.html
htdocs/index.html
+0
-0
chart_donut.html
htdocs/samples/chart_donut.html
+0
-0
chart_gauge.html
htdocs/samples/chart_gauge.html
+0
-0
chart_pie.html
htdocs/samples/chart_pie.html
+0
-0
chart_scatter.html
htdocs/samples/chart_scatter.html
+0
-0
chart_xy.html
htdocs/samples/chart_xy.html
+0
-40
custom_x_scale.html
htdocs/samples/custom_x_scale.html
+9
-0
data_region_timeseries.html
htdocs/samples/data_region_timeseries.html
+0
-0
No files found.
htdocs/css/index.css
0 → 100644
View file @
916074d3
.row
{
margin-left
:
8px
;
}
.row
a
{
display
:
block
;
text-align
:
left
;
font-size
:
1.2em
;
line-height
:
1.8
;
}
.row
h3
{
color
:
#777
;
}
\ No newline at end of file
htdocs/index.html
View file @
916074d3
This diff is collapsed.
Click to expand it.
htdocs/samples/donut.html
→
htdocs/samples/
chart_
donut.html
View file @
916074d3
File moved
htdocs/samples/chart_
arc_
gauge.html
→
htdocs/samples/chart_gauge.html
View file @
916074d3
File moved
htdocs/samples/pie.html
→
htdocs/samples/
chart_
pie.html
View file @
916074d3
File moved
htdocs/samples/scatter.html
→
htdocs/samples/
chart_
scatter.html
View file @
916074d3
File moved
htdocs/samples/chart_xy.html
deleted
100644 → 0
View file @
3c2a4c83
<html>
<head>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"/css/c3.css"
>
</head>
<body>
<div
id=
"chart"
></div>
<script
src=
"http://d3js.org/d3.v3.min.js"
charset=
"utf-8"
></script>
<script
src=
"/js/c3.min.js"
></script>
<script>
var
chart
=
c3
.
generate
({
bindto
:
'#chart'
,
data
:
{
x
:
'x'
,
columns
:
[
[
'x'
,
30
,
40
,
100
,
200
,
250
,
350
],
[
'sample'
,
30
,
200
,
100
,
400
,
150
,
250
]
]
}
});
setTimeout
(
function
()
{
chart
.
load
({
columns
:
[
[
'sample'
,
100
,
300
,
200
,
300
,
150
,
300
]
]
})
},
1000
);
setTimeout
(
function
()
{
chart
.
load
({
columns
:
[
[
'x'
,
130
,
140
,
200
,
300
,
450
,
550
],
[
'sample'
,
200
,
350
,
100
,
200
,
50
,
100
]
]
})
},
1500
);
</script>
</body>
</html>
htdocs/samples/custom_x_scale.html
View file @
916074d3
...
...
@@ -45,6 +45,15 @@
});
},
3000
);
setTimeout
(
function
()
{
chart
.
load
({
columns
:
[
[
'x'
,
130
,
140
,
200
,
300
,
450
,
550
],
[
'sample'
,
200
,
350
,
100
,
200
,
50
,
100
]
]
})
},
4000
);
</script>
</body>
</html>
htdocs/samples/
timeseries_region
.html
→
htdocs/samples/
data_region_timeseries
.html
View file @
916074d3
File moved
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