Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / trace-viewer / third_party / tvcm / src / tvcm / 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: 16pt;
9   }
10
11   .chart-base {
12     font-size: 12pt;
13   }
14
15   .chart-base .axis path,
16   .chart-base .axis line {
17     fill: none;
18     shape-rendering: crispEdges;
19     stroke: #000;
20   }
21 </style>
22 <template id="chart-base-template">
23   <svg> <!-- svg tag is dropped by ChartBase.decorate. -->
24     <g xmlns="http://www.w3.org/2000/svg" id="chart-area">
25       <g class="x axis"></g>
26       <g class="y axis"></g>
27       <text id="title"></text>
28     </g>
29   </svg>
30 </template>