This repository has been archived by the owner on Feb 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Added BubbleChartPlotOptions. - Added ColumnRangeChartPlotOptions. - Added ErrorBarChartPlotOptions. - Added FunnelChartPlotOptions. - Added heatmap.js Several changes in HighChartsPlotOptionsImpl
- Loading branch information
Showing
10 changed files
with
376 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
...va/at/downdrown/vaadinaddons/highchartsapi/model/plotoptions/BoxPlotChartPlotOptions.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package at.downdrown.vaadinaddons.highchartsapi.model.plotoptions; | ||
|
||
import at.downdrown.vaadinaddons.highchartsapi.model.ChartType; | ||
|
||
/** | ||
* Projekt: VaadinHighChartsAPI<br> | ||
* Package: at.downdrown.vaadinaddons.highchartsapi.model.plotoptions<br> | ||
* Klasse: BoxPlotChartPlotOptions.class<br> | ||
* Erstellt am 24. August 2015.<br> | ||
* Copyright © HSWE Allg. Applikationen.<br> | ||
* <br> | ||
* | ||
* @author Manfred Huber (02ub0j08)<br> | ||
*/ | ||
public class BoxPlotChartPlotOptions extends HighChartsPlotOptionsImpl { | ||
|
||
public BoxPlotChartPlotOptions() { | ||
this.chartType = ChartType.BOXPLOT; | ||
} | ||
} |
20 changes: 20 additions & 0 deletions
20
...ava/at/downdrown/vaadinaddons/highchartsapi/model/plotoptions/BubbleChartPlotOptions.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package at.downdrown.vaadinaddons.highchartsapi.model.plotoptions; | ||
|
||
import at.downdrown.vaadinaddons.highchartsapi.model.ChartType; | ||
|
||
/** | ||
* Projekt: VaadinHighChartsAPI<br> | ||
* Package: at.downdrown.vaadinaddons.highchartsapi.model.plotoptions<br> | ||
* Klasse: BoxPlotChartPlotOptions.class<br> | ||
* Erstellt am 24. August 2015.<br> | ||
* Copyright © HSWE Allg. Applikationen.<br> | ||
* <br> | ||
* | ||
* @author Manfred Huber (02ub0j08)<br> | ||
*/ | ||
public class BubbleChartPlotOptions extends HighChartsPlotOptionsImpl { | ||
|
||
public BubbleChartPlotOptions() { | ||
this.chartType = ChartType.BUBBLE; | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
...t/downdrown/vaadinaddons/highchartsapi/model/plotoptions/ColumnRangeChartPlotOptions.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
/* | ||
* Copyright (c) 2015 by Manfred Huber. | ||
*/ | ||
|
||
package at.downdrown.vaadinaddons.highchartsapi.model.plotoptions; | ||
|
||
import at.downdrown.vaadinaddons.highchartsapi.model.ChartType; | ||
|
||
public class ColumnRangeChartPlotOptions extends HighChartsPlotOptionsImpl { | ||
public ColumnRangeChartPlotOptions() { | ||
chartType = ChartType.COLUMNRANGE; | ||
} | ||
} |
20 changes: 20 additions & 0 deletions
20
...a/at/downdrown/vaadinaddons/highchartsapi/model/plotoptions/ErrorBarChartPlotOptions.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package at.downdrown.vaadinaddons.highchartsapi.model.plotoptions; | ||
|
||
import at.downdrown.vaadinaddons.highchartsapi.model.ChartType; | ||
|
||
/** | ||
* Projekt: VaadinHighChartsAPI<br> | ||
* Package: at.downdrown.vaadinaddons.highchartsapi.model.plotoptions<br> | ||
* Klasse: ErrorBarChartPlotOptions.class<br> | ||
* Erstellt am 25. August 2015.<br> | ||
* Copyright © HSWE Allg. Applikationen.<br> | ||
* <br> | ||
* | ||
* @author Manfred Huber (02ub0j08)<br> | ||
*/ | ||
public class ErrorBarChartPlotOptions extends HighChartsPlotOptionsImpl { | ||
|
||
public ErrorBarChartPlotOptions() { | ||
this.chartType = ChartType.ERRORBAR; | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
...ava/at/downdrown/vaadinaddons/highchartsapi/model/plotoptions/FunnelChartPlotOptions.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
/* | ||
* Copyright (c) 2015 by Manfred Huber. | ||
*/ | ||
|
||
package at.downdrown.vaadinaddons.highchartsapi.model.plotoptions; | ||
|
||
import at.downdrown.vaadinaddons.highchartsapi.model.ChartType; | ||
|
||
public class FunnelChartPlotOptions extends HighChartsPlotOptionsImpl { | ||
public FunnelChartPlotOptions() { | ||
chartType = ChartType.FUNNEL; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.