Skinning a Chart : Chart « YUI Library « JavaScript DHTML

JavaScript DHTML
1. Ajax Layer
2. Data Type
3. Date Time
4. Development
5. Document
6. Dojo toolkit
7. Event
8. Event onMethod
9. Ext JS
10. Form Control
11. GUI Components
12. HTML
13. Javascript Collections
14. Javascript Objects
15. Javascript Properties
16. jQuery
17. Language Basics
18. Mochkit
19. Mootools
20. Node Operation
21. Object Oriented
22. Page Components
23. Rico
24. Scriptaculous
25. Security
26. SmartClient
27. Style Layout
28. Table
29. Utilities
30. Window Browser
31. YUI Library
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
JavaScript DHTML » YUI Library » Chart 
Skinning a Chart
 

<!--
Software License Agreement (BSD License)
Copyright (c2009, Yahoo! Inc.
All rights reserved.

Redistribution and use of this software in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

    * Redistributions of source code must retain the above copyright notice, this list of conditions and the
      following disclaimer.
    * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
    * Neither the name of Yahoo! Inc. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission of Yahoo! Inc.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTIONHOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISEARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Sources of Intellectual Property Included in the YUI Library

YUI is issued by Yahoo! under the BSD license above. Below is a list of certain publicly available software that is the source of intellectual property in YUI, along with the licensing terms that pertain to thosesources of IP. This list is for informational purposes only and is not intended to represent an exhaustive list of third party contributions to the YUI.

    * Douglas Crockford's JSON parsing and stringifying methods: In the JSON Utility, Douglas Crockford's JSON parsing and stringifying methods are adapted from work published at JSON.org. The adapted work is in the public domain.
    * Robert Penner's animation-easing algorithms: In the Animation Utility, YUI makes use of Robert Penner's algorithms for easing.
    * Geoff Stearns's SWFObject: In the Charts Control and the Uploader versions through 2.7.0, YUI makes use of Geoff Stearns's SWFObject v1.5 for Flash Player detection and embedding. More information on SWFObject can be found here (http://blog.deconcept.com/swfobject/). SWFObject is (c) 2007 Geoff Stearns and is released under the MIT License (http://www.opensource.org/licenses/mit-license.php).
    * Diego Perini's IEContentLoaded technique: The Event Utility employs a technique developed by Diego Perini and licensed under GPL. YUI's use of this technique is included under our BSD license with the author's permission.

-->

<head>


    <meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>Skinning a Chart Example</title>

<style type="text/css">
/*margin and padding on body element
  can introduce errors in determining
  element position and are not recommended;
  we turn them off as a foundation for YUI
  CSS treatments. */
body {
  margin:0;
  padding:0;
}
</style>

<link rel="stylesheet" type="text/css" href="yui_2.7.0b-lib/fonts/fonts-min.css" />
<script type="text/javascript" src="yui_2.7.0b-lib/yahoo-dom-event/yahoo-dom-event.js"></script>
<script type="text/javascript" src="yui_2.7.0b-lib/json/json-min.js"></script>
<script type="text/javascript" src="yui_2.7.0b-lib/element/element-min.js"></script>
<script type="text/javascript" src="yui_2.7.0b-lib/datasource/datasource-min.js"></script>
<script type="text/javascript" src="yui_2.7.0b-lib/charts/charts-min.js"></script>


<!--begin custom header content for this example-->
<style type="text/css">
  #chart
  {
    width: 580px;
    height: 400px;
  }
  
  .chart_title
  {
    display: block;
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 0.4em;
  }
</style>
<!--end custom header content for this example-->

</head>

<body class=" yui-skin-sam">


<h1>Skinning a Chart Example</h1>

<div class="exampleIntro">
  <p>This example demonstrates how to modify the <a href="http://developer.yahoo.com/yui/charts/">YUI Charts Control</a>'s styles to give it a custom appearance.</p>
<p>Please note: The YUI Charts Control requires Flash Player 9.0.45 or higher. The latest version of Flash Player is available at the <a href="http://www.adobe.com/go/getflashplayer">Adobe Flash Player Download Center</a>.</p>      
</div>

<!--BEGIN SOURCE CODE FOR EXAMPLE  -->

<span class="chart_title">Wilson's Supermarket - Product Comparison</span>
<div id="chart">Unable to load Flash content. The YUI Charts Control requires Flash Player 9.0.45 or higher. You can download the latest version of Flash Player from the <a href="http://www.adobe.com/go/getflashplayer">Adobe Flash Player Download Center</a>.</p></div>

<script type="text/javascript">

  YAHOO.widget.Chart.SWFURL = "yui_2.7.0b-lib/charts/assets/charts.swf";

//--- data

  YAHOO.example.salesComparison =
  [
    month: "Oct", pork: 1354, beef: 1442 },
    month: "Nov", pork: 1326, beef: 1496 },
    month: "Dec", pork: 1292, beef: 1582 },
    month: "Jan", pork: 1387, beef: 1597 },
    month: "Feb", pork: 1376, beef: 1603 }
  ];

  var salesData = new YAHOO.util.DataSourceYAHOO.example.salesComparison );
  salesData.responseType = YAHOO.util.DataSource.TYPE_JSARRAY;
  salesData.responseSchema = fields: "month""pork""beef" ] };

//--- chart

  var seriesDef =
  [
    {
      yField: "pork",
      displayName: "Sales of Pork",
      style:
      {
        image: "yui_2.7.0b-assets/charts-assets/tube.png",
        mode: "no-repeat",
        color: 0x2e434d,
        size: 40
      }
    },
    {
      yField: "beef",
      displayName: "Sales of Beef",
      style:
      {
        image: "yui_2.7.0b-assets/charts-assets/tube.png",
        mode: "no-repeat",
        color: 0xc2d81e,
        size: 40
      }
    }
  ];

  var mychart = new YAHOO.widget.ColumnChart"chart", salesData,
  {
    series: seriesDef,
    xField: "month",
    style:
    {
      border: {color: 0x96acb4, size: 12},
      font: {name: "Arial Black", size: 14, color: 0x586b71},
      dataTip:
      {
        border: {color: 0x2e434d, size: 2},
        font: {name: "Arial Black", size: 13, color: 0x586b71}
      },
      xAxis:
      {
        color: 0x2e434d
      },
      yAxis:
      {
        color: 0x2e434d,
        majorTicks: {color: 0x2e434d, length: 4},
        minorTicks: {color: 0x2e434d, length: 2},
        majorGridLines: {size: 0}
      }
    },
    //only needed for flash player express install
    expressInstall: "yui_2.7.0b-assets/charts-assets/expressinstall.swf"
  });
</script>
<!--END SOURCE CODE FOR EXAMPLE  -->

</body>

   
  
yui_2.7.0b.zip( 4,431 k)
Related examples in the same category
1. Chart and DataTable Example
2. Chart with Legend Example
3. Charts Quickstart Example
4. Column Chart with Rotated Title and Labels
5. Stacked Bar Chart
6. Styling Lines, Borders and Fills
7. Charts in a TabView
8. Chart with DataSource Polling
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.