File tree 2 files changed +8
-3
lines changed
src/main/java/at/gmi/nordborglab/widgets/gwasgeneviewer/client
2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change
1
+ March 20, 2012 - Release 0.4.8
2
+ * GeneViewer (lib): Updated to version 0.4.6
3
+ * GWASGeneViewer (Bugfix): Added HighlightSeriesOption.
4
+
1
5
February 23, 2012 - Release 0.4.7
2
6
* GWASGeneViewer (bugfix): Gene labels are now positioned correctly in the scatterplots
3
7
Original file line number Diff line number Diff line change 8
8
import org .danvk .dygraphs .client .DygraphOptions ;
9
9
import org .danvk .dygraphs .client .Dygraphs ;
10
10
import org .danvk .dygraphs .client .DygraphsJS ;
11
+ import org .danvk .dygraphs .client .DygraphOptions .HighlightSeriesOptions ;
11
12
import org .danvk .dygraphs .client .events .Canvas ;
12
13
import org .danvk .dygraphs .client .events .HightlightHandler ;
13
14
import org .danvk .dygraphs .client .events .SelectHandler ;
@@ -375,10 +376,10 @@ protected DygraphOptions setOptions(DygraphOptions options){
375
376
options .setXlabel ("Position" );
376
377
options .setAxisLabelFontSize (11 );
377
378
options .setValueRange (0 ,(int )maxValue + 2 );
378
- options .setyAxisLabelWidth (20 );
379
+ options .setYAxisLabelWidth (20 );
379
380
options .setColors (color );
380
- options . setMinimumDistanceForHighlight ( 10 );
381
- options .setIncludeYPositionForHightlight ( true );
381
+ HighlightSeriesOptions highlightSeriesOptions = HighlightSeriesOptions . create ( );
382
+ options .setHighlightSeriesOpts ( highlightSeriesOptions );
382
383
options .setDateWindow (viewStart , viewEnd );
383
384
options .setAnimatedZooms (true );
384
385
return options ;
You can’t perform that action at this time.
0 commit comments