forked from almende/vis
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added support to supply an end to bar charts to have them scale (alme…
…nde#2760) * Added support to supply an X2 to bar charts to have them scale * Fixed graph2d stacking issue. It no longer takes into account hidden items * Changed x2 to end per recommendation and added this to the docs
- Loading branch information
Showing
4 changed files
with
84 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
<!DOCTYPE HTML> | ||
<html> | ||
<head> | ||
<title>Graph2d | Bar Graph Example</title> | ||
|
||
<style type="text/css"> | ||
body, html { | ||
font-family: sans-serif; | ||
} | ||
</style> | ||
|
||
<script src="../../dist/vis.js"></script> | ||
<link href="../../dist/vis-timeline-graph2d.min.css" rel="stylesheet" type="text/css" /> | ||
</head> | ||
<body> | ||
<h2>Graph2d | Bar Graph With End Example</h2> | ||
<div style="width:700px; font-size:14px; text-align: justify;"> | ||
This example shows how you can plot a bar chart and supply an end value to have it fill. | ||
</div> | ||
<br /> | ||
|
||
<div id="visualization"></div> | ||
|
||
<script type="text/javascript"> | ||
|
||
var container = document.getElementById('visualization'); | ||
var items = [ | ||
{x: '2014-06-11 00:00:00', end: '2014-06-13 00:00:00', y: 10 }, | ||
{x: '2014-06-13 00:00:00', end: '2014-06-14 00:00:00', y: 15 }, | ||
{x: '2014-06-15 00:00:00', end: '2014-06-16 00:00:00', y: 14 }, | ||
{x: '2014-06-16 00:00:00', end: '2014-06-17 00:00:00', y: 17 }, | ||
{x: '2014-06-17 00:00:00', end: '2014-06-18 00:00:00', y: 20 }, | ||
{x: '2014-06-18 00:00:00', end: '2014-06-25 00:00:00', y: 25 }, | ||
]; | ||
|
||
var dataset = new vis.DataSet(items); | ||
var options = { | ||
style:'bar', | ||
drawPoints: false, | ||
dataAxis: { | ||
icons:true | ||
}, | ||
orientation:'top', | ||
start: '2014-06-10', | ||
end: '2014-06-18' | ||
}; | ||
var graph2d = new vis.Graph2d(container, items, options); | ||
|
||
</script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters