update formatting in internal.proto

pull/10616/head
Iris Scholten 2018-03-14 09:17:15 -07:00
parent 48116784b9
commit 3e54c6de16
1 changed files with 8 additions and 8 deletions

View File

@ -37,20 +37,20 @@ message DashboardCell {
map<string, Axis> axes = 9; // Axes represent the graphical viewport for a cell's visualizations map<string, Axis> axes = 9; // Axes represent the graphical viewport for a cell's visualizations
repeated Color colors = 10; // Colors represent encoding data values to color repeated Color colors = 10; // Colors represent encoding data values to color
Legend legend = 11; // Legend is summary information for a cell Legend legend = 11; // Legend is summary information for a cell
TableOptions tableOptions = 12; // TableOptions for visualization of cell with type 'table' TableOptions tableOptions = 12; // TableOptions for visualization of cell with type 'table'
} }
message TableOptions { message TableOptions {
string timeFormat = 1; // format for time string timeFormat = 1; // format for time
bool verticalTimeAxis = 2; // time axis should be a column not row bool verticalTimeAxis = 2; // time axis should be a column not row
TableColumn sortBy = 3; // which column should a table be sorted by TableColumn sortBy = 3; // which column should a table be sorted by
string wrapping = 4; // option for text wrapping string wrapping = 4; // option for text wrapping
repeated TableColumn columnNames = 5; // names and renames for columns repeated TableColumn columnNames = 5; // names and renames for columns
} }
message TableColumn { message TableColumn {
string internalName = 1; // name of column string internalName = 1; // name of column
string displayName = 2; // what column is renamed to string displayName = 2; // what column is renamed to
} }
message Color { message Color {