111abd9b1a824a8a25bd39d4e8e15ab226d1d40a kate Tue Apr 14 16:29:17 2020 -0700 Simpler syntax for barChart size thresholds. refs #25339 diff --git src/hg/inc/barChartUi.h src/hg/inc/barChartUi.h index 92a270f..2d572eb 100644 --- src/hg/inc/barChartUi.h +++ src/hg/inc/barChartUi.h @@ -43,32 +43,31 @@ #define BAR_CHART_UNIT "barChartUnit" /* Measurement type -- e.g. 'median'. Shown as part of label on details page. Default is "" */ #define BAR_CHART_METRIC "barChartMetric" /* Suppress whiteout behind graph (to show highlight and blue lines) */ #define BAR_CHART_NO_WHITEOUT "noWhiteout" #define BAR_CHART_NO_WHITEOUT_DEFAULT FALSE /* Support limiting graphs to small or medium hights (bypass semantic zoom) */ #define BAR_CHART_MAX_GRAPH_SIZE "barChartMaxSize" #define BAR_CHART_MAX_GRAPH_SIZE_SMALL "small" #define BAR_CHART_MAX_GRAPH_SIZE_MEDIUM "medium" #define BAR_CHART_MAX_GRAPH_SIZE_LARGE "large" #define BAR_CHART_MAX_GRAPH_SIZE_DEFAULT BAR_CHART_MAX_GRAPH_SIZE_LARGE -#define BAR_CHART_WIN_MAX_GRAPH "barChartLargeGraphWinSize" -#define BAR_CHART_WIN_MED_GRAPH "barChartMediumGraphWinSize" +#define BAR_CHART_SIZE_WINDOWS "barChartSizeWindows" void barChartCfgUi(char *database, struct cart *cart, struct trackDb *tdb, char *track, char *title, boolean boxed); /* Bar chart track type */ #define barChartAutoSqlString \ "table barChartBed\n" \ "\"BED6+ with additional fields for category count and values\"\n" \ "(\n" \ "string chrom; \"Reference sequence chromosome or scaffold\"\n" \ "uint chromStart; \"Start position in chromosome\"\n" \ "uint chromEnd; \"End position in chromosome\"\n" \ "string name; \"Item identifier\"\n" \ "uint score; \"Score from 0-1000; derived from total median all categories (log-transformed and scaled)\"\n" \ "char[1] strand; \"+ or - for strand\"\n" \