Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
F
flot
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
HS-public
flot
Commits
eac1bc33
Commit
eac1bc33
authored
Apr 08, 2013
by
David Schnur
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed example file committed accidentally.
parent
bad589c0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
39 deletions
+0
-39
basic-canvas.html
examples/basic-canvas.html
+0
-39
No files found.
examples/basic-canvas.html
deleted
100644 → 0
View file @
bad589c0
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=utf-8"
>
<title>
Flot Examples
</title>
<link
href=
"layout.css"
rel=
"stylesheet"
type=
"text/css"
>
<!--[if lte IE 8]><script language="javascript" type="text/javascript" src="../excanvas.min.js"></script><![endif]-->
<script
language=
"javascript"
type=
"text/javascript"
src=
"../jquery.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../jquery.flot.js"
></script>
<script
language=
"javascript"
type=
"text/javascript"
src=
"../jquery.flot.canvas.js"
></script>
</head>
<body>
<h1>
Flot Examples
</h1>
<div
id=
"placeholder"
style=
"width:600px;height:300px;"
></div>
<p>
Simple example. You don't need to specify much to get an
attractive look. Put in a placeholder, make sure you set its
dimensions (otherwise the plot library will barf) and call the
plot function with the data. The axes are automatically
scaled.
</p>
<script
type=
"text/javascript"
>
$
(
function
()
{
var
d1
=
[];
for
(
var
i
=
0
;
i
<
14
;
i
+=
0.5
)
d1
.
push
([
i
,
Math
.
sin
(
i
)]);
var
d2
=
[[
0
,
3
],
[
4
,
8
],
[
8
,
5
],
[
9
,
13
]];
// a null signifies separate line segments
var
d3
=
[[
0
,
12
],
[
7
,
12
],
null
,
[
7
,
2.5
],
[
12
,
2.5
]];
$
.
plot
(
$
(
"#placeholder"
),
[
d1
,
d2
,
d3
],
{
canvas
:
true
});
});
</script>
</body>
</html>
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