You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by pe...@apache.org on 2015/11/20 21:18:52 UTC

[03/41] git commit: [flex-asjs] [refs/heads/core_js_to_as] - Update width of chart, remove gradient fill for columns

Update width of chart, remove gradient fill for columns


Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/ae3e6473
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/ae3e6473
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/ae3e6473

Branch: refs/heads/core_js_to_as
Commit: ae3e647368716a9d8de9f8f76cb937a1d414f63b
Parents: 3c8b087
Author: OmPrakash Muppirala <bi...@gmail.com>
Authored: Wed Sep 30 11:53:41 2015 +0200
Committer: OmPrakash Muppirala <bi...@gmail.com>
Committed: Wed Sep 30 11:53:41 2015 +0200

----------------------------------------------------------------------
 .../flexjs/FlexWebsiteStatsViewer/src/StatsView.mxml    | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/ae3e6473/examples/flexjs/FlexWebsiteStatsViewer/src/StatsView.mxml
----------------------------------------------------------------------
diff --git a/examples/flexjs/FlexWebsiteStatsViewer/src/StatsView.mxml b/examples/flexjs/FlexWebsiteStatsViewer/src/StatsView.mxml
index 33842df..3d67cbf 100644
--- a/examples/flexjs/FlexWebsiteStatsViewer/src/StatsView.mxml
+++ b/examples/flexjs/FlexWebsiteStatsViewer/src/StatsView.mxml
@@ -55,7 +55,7 @@ limitations under the License.
 	<js:Label text="Number of users on flex.apache.org for last 30 days" x="10" y="10" />
 	<js:TextButton id="refreshButton" text="Refresh" x="300" y="10" click="refreshBtnClick(event)"/> 
 	
-	<js:ColumnChart id="columnChart" x="40" y="40" width="1024" height="768" className="AllCharts">
+	<js:ColumnChart id="columnChart" x="40" y="40" width="2000" height="768" className="AllCharts">
 		<js:beads>
 			<js:SimpleBinding
 				sourceID="applicationModel"
@@ -72,8 +72,16 @@ limitations under the License.
 					<fx:Component>
 						<js:BoxItemRenderer>
 							<js:fill>
-								<js:SolidColor color="#FF964D" alpha="1.0" />
+								<js:SolidColor color="#7CB5EC" alpha="1.0" />
 							</js:fill>
+							<!--<js:fill>
+								<js:LinearGradient rotation="90">
+									<js:entries>
+										<js:GradientEntry color="#7CB5EC" ratio="0" />
+										<js:GradientEntry color="#EFF7FF" ratio="0.5" />
+									</js:entries>
+								</js:LinearGradient>
+							</js:fill>-->
 						</js:BoxItemRenderer>                      
 					</fx:Component>
 				</js:itemRenderer>