| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <!-- | 2 <!-- |
| 3 Copyright (c) 2015 The Chromium Authors. All rights reserved. | 3 Copyright (c) 2015 The Chromium Authors. All rights reserved. |
| 4 Use of this source code is governed by a BSD-style license that can be | 4 Use of this source code is governed by a BSD-style license that can be |
| 5 found in the LICENSE file. | 5 found in the LICENSE file. |
| 6 --> | 6 --> |
| 7 | 7 |
| 8 <link rel="import" href="/tracing/ui/base/heading.html"> | 8 <link rel="import" href="/tracing/ui/base/heading.html"> |
| 9 <link rel="import" href="/tracing/ui/base/ui.html"> | 9 <link rel="import" href="/tracing/ui/base/ui.html"> |
| 10 <link rel="import" href="/tracing/ui/tracks/chart_transform.html"> | 10 <link rel="import" href="/tracing/ui/tracks/chart_transform.html"> |
| (...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 268 * See the description of ChartSeriesYAxis.autoSetFromRange for the optional | 268 * See the description of ChartSeriesYAxis.autoSetFromRange for the optional |
| 269 * configuration argument flags. | 269 * configuration argument flags. |
| 270 */ | 270 */ |
| 271 autoSetAxis: function(seriesYAxis, opt_config) { | 271 autoSetAxis: function(seriesYAxis, opt_config) { |
| 272 var series = this.axisGuidToAxisData_[seriesYAxis.guid].series; | 272 var series = this.axisGuidToAxisData_[seriesYAxis.guid].series; |
| 273 seriesYAxis.autoSetFromSeries(series, opt_config); | 273 seriesYAxis.autoSetFromSeries(series, opt_config); |
| 274 } | 274 } |
| 275 }; | 275 }; |
| 276 | 276 |
| 277 return { | 277 return { |
| 278 ChartTrack: ChartTrack | 278 ChartTrack, |
| 279 }; | 279 }; |
| 280 }); | 280 }); |
| 281 </script> | 281 </script> |
| OLD | NEW |