File tree 2 files changed +7
-3
lines changed
src/main/java/at/gmi/nordborglab/widgets/geneviewer/client
2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change
1
+ March 20, 2012 - Release 0.4.6
2
+ * Dygraph (Update): Upgraded to new version of dygraph (0.7.4)
3
+ * GWT (Update): Removed some settings for Dygraph options.
4
+
1
5
February 15, 2012 - Release 0.4.5
2
6
* GWT (Feature): Genestats are now cached properly.
3
7
Original file line number Diff line number Diff line change 5
5
import java .util .List ;
6
6
7
7
import org .danvk .dygraphs .client .DygraphOptions ;
8
+ import org .danvk .dygraphs .client .DygraphOptions .HighlightSeriesOptions ;
8
9
import org .danvk .dygraphs .client .DygraphOptions .SHOW_LEGEND ;
9
10
import org .danvk .dygraphs .client .Dygraphs ;
10
11
import org .danvk .dygraphs .client .events .UnderlayHandler ;
@@ -613,14 +614,13 @@ protected DataView filterStatsToDisplay() {
613
614
private DygraphOptions createOptions (boolean stepPlot ) {
614
615
615
616
options .setRollerPeriod (1000 );
616
- options .setshowRoller (true );
617
+ options .setShowRoller (true );
617
618
options .setPointSize (0 );
618
619
options .setIncludeZero (true );
619
620
options .setWidth (width );
620
621
options .setHeight (statsBandHeight );
621
622
options .setAxisLabelFontSize (11 );
622
- options .setyAxisLabelWidth (20 );
623
- options .setMinimumDistanceForHighlight (10 );
623
+ options .setYAxisLabelWidth (20 );
624
624
options .setFillGraph (true );
625
625
if (stepPlot ) {
626
626
options .setStepPlot (stepPlot );
You can’t perform that action at this time.
0 commit comments