| Index: packages/charted/examples/charts/components/demo_custom_axis.html
 | 
| diff --git a/packages/charted/examples/charts/components/demo_custom_axis.html b/packages/charted/examples/charts/components/demo_custom_axis.html
 | 
| new file mode 100644
 | 
| index 0000000000000000000000000000000000000000..334543517387f6e6153345eb55b72cf689ede55f
 | 
| --- /dev/null
 | 
| +++ b/packages/charted/examples/charts/components/demo_custom_axis.html
 | 
| @@ -0,0 +1,28 @@
 | 
| +<!DOCTYPE html>
 | 
| +<html>
 | 
| +  <head>
 | 
| +    <title>Custom Axis</title>
 | 
| +    <link rel="stylesheet" href="../demo_charts.css">
 | 
| +    <style>
 | 
| +      .chart-wrapper {
 | 
| +          width: 450px;
 | 
| +          height: 300px;
 | 
| +      }
 | 
| +    </style>
 | 
| +  </head>
 | 
| +  <body>
 | 
| +    <div>
 | 
| +      <h1>Default Measure Axis</h1>
 | 
| +      <div class="default chart-wrapper"></div>
 | 
| +
 | 
| +      <h1>Custom Measure Axis Domain</h1>
 | 
| +      <div class="custom-domain chart-wrapper"></div>
 | 
| +
 | 
| +      <h1>Custom Measure Axis Domain & Tick Values</h1>
 | 
| +      <div class="custom-ticks chart-wrapper"></div>
 | 
| +    </div>
 | 
| +
 | 
| +    <script type="application/dart" src="demo_custom_axis.dart"></script>
 | 
| +    <script src="packages/browser/dart.js"></script>
 | 
| +  </body>
 | 
| +</html>
 | 
| 
 |