diff options
| author | Pliable Pixels <pliablepixels@gmail.com> | 2017-09-27 12:42:48 -0400 |
|---|---|---|
| committer | Pliable Pixels <pliablepixels@gmail.com> | 2017-09-27 12:42:48 -0400 |
| commit | 210e8feae2fb4842bfb2de38666e6c41671fef3c (patch) | |
| tree | cbdafa34b1a6260bb20236d7e9de9eb1b690a1c5 /www/lib/vis/examples/graph2d/05_bothAxis.html | |
| parent | e7e7baeaad90229ccb3e0f45f4ebd77be7d79b14 (diff) | |
removed lib
Diffstat (limited to 'www/lib/vis/examples/graph2d/05_bothAxis.html')
| -rw-r--r-- | www/lib/vis/examples/graph2d/05_bothAxis.html | 137 |
1 files changed, 0 insertions, 137 deletions
diff --git a/www/lib/vis/examples/graph2d/05_bothAxis.html b/www/lib/vis/examples/graph2d/05_bothAxis.html deleted file mode 100644 index 7b2a04c2..00000000 --- a/www/lib/vis/examples/graph2d/05_bothAxis.html +++ /dev/null @@ -1,137 +0,0 @@ -<!DOCTYPE HTML> -<html> -<head> - <title>Graph2d | Both Axis Example</title> - <link href="../../dist/vis-timeline-graph2d.min.css" rel="stylesheet" type="text/css" /> - <script src="../../dist/vis.js"></script> - - <style type="text/css"> - body, html { - font-family: sans-serif; - } - - .custom-style1 { - fill: #f2ea00; - fill-opacity:0; - stroke-width:2px; - stroke: #b3ab00; - } - - .custom-style2 { - fill: #00a0f2; - stroke-width:2px; - stroke: #050092; - } - - .custom-style3 { - fill: #00f201; - fill-opacity:0; - stroke-width:2px; - stroke: #029200; - } - path.custom-style3.vis-fill { - fill-opacity:0.5 !important; - stroke: none; - } - </style> - -<script>(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)})(window,document,'script','//www.google-analytics.com/analytics.js','ga');ga('create', 'UA-61231638-1', 'auto');ga('send', 'pageview');</script></head> -<body> -<h2>Graph2d | Both Axis Example</h2> -<div style="width:700px; font-size:14px; text-align: justify;"> - This example shows the some of the graphs outlined on the right side using the <code>yAxisOrientation</code> option within the groups. - We also show a few more custom styles for the graphs. Finally, the legend is manually positioned. Both the left and right axis - have their own legend. If one of the axis is unused, the legend is not shown. The options for the legend have been split - in a <code>left</code> and a <code>right</code> segment. The default position of the left axis has been changed. - - -</div> -<br /> -<div id="visualization"></div> - -<script type="text/javascript"> - // create a dataSet with groups - var names = ['SquareShaded', 'Bargraph', 'Blank', 'CircleShaded']; - var groups = new vis.DataSet(); - groups.add({ - id: 0, - content: names[0], - className: 'custom-style1', - options: { - drawPoints: { - style: 'square' // square, circle - }, - shaded: { - orientation: 'bottom' // top, bottom - } - }}); - - groups.add({ - id: 1, - content: names[1], - className: 'custom-style2', - options: { - style:'bar', - drawPoints: {style: 'circle', - size: 10 - } - }}); - - groups.add({ - id: 2, - content: names[2], - options: { - yAxisOrientation: 'right', // right, left - drawPoints: false - } - }); - - groups.add({ - id: 3, - content: names[3], - className: 'custom-style3', - options: { - yAxisOrientation: 'right', // right, left - drawPoints: { - style: 'circle' // square, circle - }, - shaded: { - orientation: 'top' // top, bottom - } - }}); - - var container = document.getElementById('visualization'); - var items = [ - {x: '2014-06-12', y: 0 , group: 0}, - {x: '2014-06-13', y: 30, group: 0}, - {x: '2014-06-14', y: 10, group: 0}, - {x: '2014-06-15', y: 15, group: 1}, - {x: '2014-06-16', y: 30, group: 1}, - {x: '2014-06-17', y: 10, group: 1}, - {x: '2014-06-18', y: 15, group: 1}, - {x: '2014-06-19', y: 52, group: 1}, - {x: '2014-06-20', y: 10, group: 1}, - {x: '2014-06-21', y: 20, group: 2}, - {x: '2014-06-22', y: 600, group: 2}, - {x: '2014-06-23', y: 100, group: 2}, - {x: '2014-06-24', y: 250, group: 2}, - {x: '2014-06-25', y: 300, group: 2}, - {x: '2014-06-26', y: 200, group: 3}, - {x: '2014-06-27', y: 600, group: 3}, - {x: '2014-06-28', y: 1000, group: 3}, - {x: '2014-06-29', y: 250, group: 3}, - {x: '2014-06-30', y: 300, group: 3} - ]; - - var dataset = new vis.DataSet(items); - var options = { - dataAxis: {showMinorLabels: false}, - legend: {left:{position:"bottom-left"}}, - start: '2014-06-09', - end: '2014-07-03' - }; - var graph2d = new vis.Graph2d(container, dataset, groups, options); - -</script> -</body> -</html>
\ No newline at end of file |
