Skip to content

Instantly share code, notes, and snippets.

View diethardsteiner's full-sized avatar

Diethard Steiner diethardsteiner

  • Bissol Consulting Ltd
  • London
View GitHub Profile
@diethardsteiner
diethardsteiner / index.html
Last active August 29, 2015 14:17
Demo: Using Pentaho CCC to create a context chart.
<html>
<head>
<!-- Java Script Resources -->
<script src="https://code.jquery.com/jquery-2.1.1.js" type="text/javascript"></script>
<script src="http://www.webdetails.pt/ctools/charts/lib/jquery.tipsy.js" type="text/javascript"></script>
<script src="http://www.webdetails.pt/ctools/charts/lib/protovis.js" type="text/javascript"></script>
<script src="http://www.webdetails.pt/ctools/charts/lib/protovis-msie.js" type="text/javascript"></script>
<script src="http://www.webdetails.pt/ctools/charts/lib/tipsy.js" type="text/javascript"></script>
<script src="http://www.webdetails.pt/ctools/charts/lib/def.js" type="text/javascript"></script>
<script src="http://www.webdetails.pt/ctools/charts/lib/pvc-r2.0.js" type="text/javascript"></script>
@diethardsteiner
diethardsteiner / d3_line_chart_with_events.html
Last active August 29, 2015 14:07
d3js line chart with event information
<!-- line chart code mostly based on http://bl.ocks.org/mbostock/3883245 -->
<!-- event/campaign highlight code by Diethard Steiner -->
<!DOCTYPE html>
<meta charset="utf-8">
<style>
body {
font: 10px sans-serif;
}
@diethardsteiner
diethardsteiner / index.html
Created August 7, 2012 17:52
Simple D3JS Dashboard
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<title>Testing Pie Chart</title>
<!--<script type="text/javascript" src="d3/d3.v2.js"></script>-->
<script src="http://d3js.org/d3.v2.js"></script>
<!-- Note: I made good use of the sample code provided by the D3JS community and extended it to fit my needs to create this simple dashboard -->
<style type="text/css">