Skip to content

Commit 8ebc8fb

Browse files
committed
Changed CHANGELOG and updated dygraph options
1 parent b598bb1 commit 8ebc8fb

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

CHANGELOG

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
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+
15
February 15, 2012 - Release 0.4.5
26
* GWT (Feature): Genestats are now cached properly.
37

src/main/java/at/gmi/nordborglab/widgets/geneviewer/client/GeneViewer.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
import java.util.List;
66

77
import org.danvk.dygraphs.client.DygraphOptions;
8+
import org.danvk.dygraphs.client.DygraphOptions.HighlightSeriesOptions;
89
import org.danvk.dygraphs.client.DygraphOptions.SHOW_LEGEND;
910
import org.danvk.dygraphs.client.Dygraphs;
1011
import org.danvk.dygraphs.client.events.UnderlayHandler;
@@ -613,14 +614,13 @@ protected DataView filterStatsToDisplay() {
613614
private DygraphOptions createOptions(boolean stepPlot) {
614615

615616
options.setRollerPeriod(1000);
616-
options.setshowRoller(true);
617+
options.setShowRoller(true);
617618
options.setPointSize(0);
618619
options.setIncludeZero(true);
619620
options.setWidth(width);
620621
options.setHeight(statsBandHeight);
621622
options.setAxisLabelFontSize(11);
622-
options.setyAxisLabelWidth(20);
623-
options.setMinimumDistanceForHighlight(10);
623+
options.setYAxisLabelWidth(20);
624624
options.setFillGraph(true);
625625
if (stepPlot) {
626626
options.setStepPlot(stepPlot);

0 commit comments

Comments
 (0)