Fix failure ratio format in charts

This commit fixes the failure ratio formats in some charts. Failure
ratios are between 0 and 0.2 in most of the case. So the float numbers
should have more accuracy to know exact values.

Change-Id: I26350bf8b7ff586242f99ec7ab171472f16a188c
This commit is contained in:
Masayuki Igawa 2016-12-07 11:58:13 +09:00
parent 6d0ec590dd
commit 110ac7a1b3
3 changed files with 6 additions and 3 deletions

View File

@ -80,7 +80,8 @@
granular-format="%x %X"></chart-axis>
<chart-axis name="y" opposes="x" type="linear"
path=".y" align="left" orient="vertical"
domain="[0, 1]" draw="true"></chart-axis>
domain="[0, 1]" draw="true"
granular-format=".3f"></chart-axis>
<chart-dataset name="rate"
title="% Failures"

View File

@ -83,7 +83,8 @@
granular-format="%x %X"></chart-axis>
<chart-axis name="y" type="linear" path=".y" opposes="x"
align="left" orient="vertical"
domain="[0, 1]" draw="true"></chart-axis>
domain="[0, 1]" draw="true"
granular-format=".3f"></chart-axis>
<chart-dataset name="rate"
title="% Failures"

View File

@ -87,7 +87,8 @@
granular-format="%x %X"></chart-axis>
<chart-axis name="y" opposes="x" type="linear"
path=".y" align="left" orient="vertical"
domain="[0, 1]" draw="true"></chart-axis>
domain="[0, 1]" draw="true"
granular-format=".3f"></chart-axis>
<chart-dataset name="rate"
title="% Failures"