1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright 2015 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. -->
6 <org.chromium.third_party.android.datausagechart.ChartDataUsageView
7 xmlns:android="http://schemas.android.com/apk/res/android"
8 xmlns:settings="http://schemas.android.com/apk/res-auto"
9 android:id="@+id/chart"
10 android:layout_width="match_parent"
11 android:layout_height="@dimen/data_usage_chart_height"
12 android:paddingTop="16dp"
13 android:paddingBottom="8dp" >
15 <org.chromium.third_party.android.datausagechart.ChartNetworkSeriesView
16 android:id="@id/original_series"
17 android:layout_width="match_parent"
18 android:layout_height="match_parent"
19 android:background="@color/data_reduction_chart_background_color"
20 settings:strokeColor="@color/data_reduction_original_color"
21 settings:fillColor="@color/data_reduction_original_color"
22 settings:fillColorSecondary="@color/data_reduction_original_color" />
24 <org.chromium.third_party.android.datausagechart.ChartNetworkSeriesView
25 android:id="@id/compressed_series"
26 android:layout_width="match_parent"
27 android:layout_height="match_parent"
28 settings:strokeColor="@color/data_reduction_compressed_color"
29 settings:fillColor="@color/data_reduction_compressed_color"
30 settings:fillColorSecondary="@color/data_reduction_compressed_color" />
32 </org.chromium.third_party.android.datausagechart.ChartDataUsageView>