Hotzone"
From Documentation
Tmillsclare (talk | contribs) m (Created page with 'init') |
Jimmyshiau (talk | contribs) |
||
Line 1: | Line 1: | ||
− | + | {{ZKComponentReferencePageHeader}} | |
+ | |||
+ | = Hotzone = | ||
+ | |||
+ | *Demonstration: N/A | ||
+ | *Java API: N/A | ||
+ | *JavaScript API: N/A | ||
+ | |||
+ | = Employment/Purpose = | ||
+ | |||
+ | Defines the hotzoneof a bandinfo . | ||
+ | |||
+ | = Example = | ||
+ | |||
+ | [[Image:ZKCompRef_Timeline2.png]] | ||
+ | |||
+ | <source lang="xml" > | ||
+ | <window id="win"> | ||
+ | <zscript> | ||
+ | <![CDATA[ | ||
+ | import java.util.Date; | ||
+ | import java.util.TimeZone; | ||
+ | |||
+ | TimeZone zone=TimeZone.getTimeZone("GMT-05"); | ||
+ | |||
+ | Date current=new Date(Date.parse("Jun 28 2006 00:00:00 GMT-0500")); | ||
+ | //for hotzone of band #1 | ||
+ | Date d1=new Date(Date.parse("Aug 01 2006 00:00:00 GMT-0500")); | ||
+ | Date d2=new Date(Date.parse("Sep 01 2006 00:00:00 GMT-0500")); | ||
+ | Date d3=new Date(Date.parse("Aug 02 2006 00:00:00 GMT-0500")); | ||
+ | Date d4=new Date(Date.parse("Aug 04 2006 00:00:00 GMT-0500")); | ||
+ | Date d5=new Date(Date.parse("Aug 02 2006 06:00:00 GMT-0500")); | ||
+ | Date d6=new Date(Date.parse("Aug 02 2006 12:00:00 GMT-0500")); | ||
+ | |||
+ | //for hotzone of band #2 | ||
+ | Date d7=new Date(Date.parse("Aug 01 2006 00:00:00 GMT-0500")); | ||
+ | Date d8=new Date(Date.parse("Sep 01 2006 00:00:00 GMT-0500")); | ||
+ | ]]> | ||
+ | </zscript> | ||
+ | <timeline height="300px" width="100%"> | ||
+ | <bandinfo width="70%" id="b1" intervalUnit="month" | ||
+ | intervalPixels="100" | ||
+ | timeZone="${zone}" date="${current}"> | ||
+ | <hotzone start="${d1}" end="${d2}" magnify="10" unit="week" /> | ||
+ | <hotzone start="${d3}" end="${d4}" magnify="7" unit="day" /> | ||
+ | <hotzone start="${d5}" end="${d6}" magnify="5" unit="hour" /> | ||
+ | </bandinfo> | ||
+ | <bandinfo timeZone="${zone}" date="${current}" | ||
+ | width="30%" intervalUnit="year" intervalPixels="200" | ||
+ | syncWith="b1"> | ||
+ | <hotzone start="${d7}" end="${d8}" magnify="20" unit="week" /> | ||
+ | </bandinfo> | ||
+ | </timeline> | ||
+ | </window> | ||
+ | </source> | ||
+ | |||
+ | |||
+ | |||
+ | =Supported events= | ||
+ | |||
+ | {| border="1" | width="100%" | ||
+ | ! <center>Name</center> | ||
+ | ! <center>Event Type</center> | ||
+ | |- | ||
+ | | None | ||
+ | | None | ||
+ | |} | ||
+ | |||
+ | =Supported Children= | ||
+ | |||
+ | *NONE | ||
+ | |||
+ | |||
+ | =Use cases= | ||
+ | |||
+ | [[ZK_Component_Reference/Diagrams_and_Reports/Timeline#Use_cases | Timeline ]] | ||
+ | |||
+ | =Version History= | ||
+ | |||
+ | {| border='1px' | width="100%" | ||
+ | ! Version !! Date !! Content | ||
+ | |- | ||
+ | | 5.0.2 | ||
+ | | 5/18/2010 | ||
+ | | Initialization | ||
+ | |} | ||
+ | |||
+ | {{ZKComponentReferencePageFooter}} |
Revision as of 06:47, 18 May 2010
Hotzone
- Demonstration: N/A
- Java API: N/A
- JavaScript API: N/A
Employment/Purpose
Defines the hotzoneof a bandinfo .
Example
<window id="win">
<zscript>
<![CDATA[
import java.util.Date;
import java.util.TimeZone;
TimeZone zone=TimeZone.getTimeZone("GMT-05");
Date current=new Date(Date.parse("Jun 28 2006 00:00:00 GMT-0500"));
//for hotzone of band #1
Date d1=new Date(Date.parse("Aug 01 2006 00:00:00 GMT-0500"));
Date d2=new Date(Date.parse("Sep 01 2006 00:00:00 GMT-0500"));
Date d3=new Date(Date.parse("Aug 02 2006 00:00:00 GMT-0500"));
Date d4=new Date(Date.parse("Aug 04 2006 00:00:00 GMT-0500"));
Date d5=new Date(Date.parse("Aug 02 2006 06:00:00 GMT-0500"));
Date d6=new Date(Date.parse("Aug 02 2006 12:00:00 GMT-0500"));
//for hotzone of band #2
Date d7=new Date(Date.parse("Aug 01 2006 00:00:00 GMT-0500"));
Date d8=new Date(Date.parse("Sep 01 2006 00:00:00 GMT-0500"));
]]>
</zscript>
<timeline height="300px" width="100%">
<bandinfo width="70%" id="b1" intervalUnit="month"
intervalPixels="100"
timeZone="${zone}" date="${current}">
<hotzone start="${d1}" end="${d2}" magnify="10" unit="week" />
<hotzone start="${d3}" end="${d4}" magnify="7" unit="day" />
<hotzone start="${d5}" end="${d6}" magnify="5" unit="hour" />
</bandinfo>
<bandinfo timeZone="${zone}" date="${current}"
width="30%" intervalUnit="year" intervalPixels="200"
syncWith="b1">
<hotzone start="${d7}" end="${d8}" magnify="20" unit="week" />
</bandinfo>
</timeline>
</window>
Supported events
None | None |
Supported Children
- NONE
Use cases
Version History
Version | Date | Content |
---|---|---|
5.0.2 | 5/18/2010 | Initialization |