Upstream version 7.35.144.0
[platform/framework/web/crosswalk.git] / src / tools / telemetry / telemetry / web_components / ui / chart_base.html
1 <!--
2 Copyright 2014 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file.
5 -->
6 <style>
7   .chart-base #title {
8     font-size: 18pt;
9   }
10
11   .chart-base .axis path,
12   .chart-base .axis line {
13     fill: none;
14     shape-rendering: crispEdges;
15     stroke: #000;
16   }
17 </style>
18 <template id="chart-base-template">
19   <svg> <!-- svg tag is dropped by ChartBase.decorate. -->
20     <g xmlns="http://www.w3.org/2000/svg" id="chart-area">
21       <g class="x axis"></g>
22       <g class="y axis"></g>
23       <text id="title"></text>
24     </g>
25   </svg>
26 </template>