| // Describes a chart generated from WebRTC event log data. |
| option optimize_for = LITE_RUNTIME; |
| package webrtc.analytics; |
| import "chart_enums.proto"; |
| repeated float x_values = 1; |
| repeated float y_values = 2; |
| ChartStyle.Type style = 4; |
| bool highlight_points = 5; |
| repeated DataSet data_sets = 1; |
| repeated TickLabel yaxis_tick_labels = 10; |
| message ChartCollection { |
| repeated Chart charts = 1; |
| // `calltime_to_utc_ms` is the UTC time (in ms) for the x-axis in the charts. |
| // In other words, time t ms in the charts corresponds to |
| // t+calltime_to_utc_ms ms in UTC time. |
| int64 calltime_to_utc_ms = 2; |