-
Notifications
You must be signed in to change notification settings - Fork 154
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #496 from p2t2/DEV3.2.1.1
Dev3.2.1.1
- Loading branch information
Showing
20 changed files
with
769 additions
and
95 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
version=3.2.1.0 | ||
version=3.2.1.1 |
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
13 changes: 11 additions & 2 deletions
13
Figaro/src/main/scala/com/cra/figaro/util/ColorGradient.scala
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
36 changes: 36 additions & 0 deletions
36
Figaro/src/main/scala/com/cra/figaro/util/visualization/DataView.scala
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,36 @@ | ||
/* | ||
* DataView.scala | ||
* Internal data repository/method for use by tables, charts, histograms, etc | ||
* | ||
* Created By: Glenn Takata (gtakata@cra.com) | ||
* Creation Date: Apr 9, 2015 | ||
* | ||
* Copyright 2015 Avrom J. Pfeffer and Charles River Analytics, Inc. | ||
* See http://www.cra.com or email figaro@cra.com for information. | ||
* | ||
* See http://www.github.com/p2t2/figaro for a copy of the software license. | ||
*/ | ||
package com.cra.figaro.util.visualization | ||
|
||
import prefuse.data.Table | ||
import prefuse.data.query.NumberRangeModel | ||
import prefuse.util.ui.ValuedRangeModel | ||
|
||
/** | ||
* @author Glenn Takata (gtakata@cra.com) | ||
* | ||
* Mar 17, 2015 | ||
*/ | ||
trait DataView { | ||
def name: String | ||
def title: String | ||
def range: ValuedRangeModel | ||
|
||
def nValues: Int | ||
|
||
def getTable: Table | ||
|
||
def yMax: Double | ||
def dataType: Int | ||
def yRangeModel: NumberRangeModel | ||
} |
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.