xref: /aosp_15_r20/external/webrtc/rtc_tools/rtc_event_log_visualizer/proto/chart_enums.proto (revision d9f758449e529ab9291ac668be2861e7a55c2422)
1syntax = "proto3";
2// Contains enums used as part of chart.proto
3package webrtc.analytics;
4
5message ChartStyle {
6  enum Type {
7    UNDEFINED = 0;
8    LINE_CHART = 1;
9    BAR_CHART = 2;
10    LINE_STEP_CHART = 3;
11    SCATTER_CHART = 4;
12  };
13};
14