diff --git a/bolt/internal/internal.proto b/bolt/internal/internal.proto index 6fd45711dd..38c5ec2cb1 100644 --- a/bolt/internal/internal.proto +++ b/bolt/internal/internal.proto @@ -37,20 +37,20 @@ message DashboardCell { map axes = 9; // Axes represent the graphical viewport for a cell's visualizations repeated Color colors = 10; // Colors represent encoding data values to color 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 { - string timeFormat = 1; // format for time - bool verticalTimeAxis = 2; // time axis should be a column not row - TableColumn sortBy = 3; // which column should a table be sorted by - string wrapping = 4; // option for text wrapping - repeated TableColumn columnNames = 5; // names and renames for columns + string timeFormat = 1; // format for time + bool verticalTimeAxis = 2; // time axis should be a column not row + TableColumn sortBy = 3; // which column should a table be sorted by + string wrapping = 4; // option for text wrapping + repeated TableColumn columnNames = 5; // names and renames for columns } message TableColumn { - string internalName = 1; // name of column - string displayName = 2; // what column is renamed to + string internalName = 1; // name of column + string displayName = 2; // what column is renamed to } message Color {