v44 Report post Posted August 20, 2008 Hi,I'm using Multi-series Area 2D Chart. I'm trying to show vertical lines of categories with showVerticalLine='1' . But vertical lines were not appearing in the chart. What property needs to be add for display the vertical line ? Thanks Share this post Link to post Share on other sites
Arindam Report post Posted August 21, 2008 hi, Could you please try this Vertical data separator lines vLines are vertical separator lines that help you separate blocks of data. These lines run through the height of the chart, thereby segregating data into different blocks. In case of bar charts, they are horizontal and run through the width of chart. For example, if you're plotting a chart showing monthly sales from October 2005-Mar 2006, you might want to plot a vertical separator line between Dec 2005 and January 2006 to indicate end of year. In single series charts, the vertical lines are used as under: <set label='Oct 2005' value='35456' /> <set label='Nov 2005' value='28556' /> <set label='Dec 2005' value='36556' /> <vLine color='FF5904' thickness='2' /> <set label='Jan 2006' value='45456' /> <set label='Feb 2006' value='35456' /> In multi-series charts, it is used between <category> elements as under: <categories> <category label='Oct 2005' /> <category label='Nov 2005' /> <category label='Dec 2005' /> <vLine color='FF5904' thickness='2' /> <category label='Jan 2006' /> <category label='Feb 2006' /> </categories> You can configure the cosmetics of vertical separator lines using the following attributes: Attribute Name Type Range Description color Color Hex Color This attribute defines the color of vertical separator line. thickness Number In Pixels Thickness in pixels of the vertical separator line. alpha Number 0-100 Alpha of the vertical separator line. dashed Boolean 0/1 Whether the vertical separator line should appear as dashed? dashLen Number In Pixels If the vertical separator line is to appear as dashed, this attribute defines the length of dash. dashGap Number In Pixels If the vertical separator line is to appear as dashed, this attribute defines the length of dash gap. Share this post Link to post Share on other sites
v44 Report post Posted August 21, 2008 Hi, I want to draw lines above categories but vLine is drawing lines between categories . Because of that I tried showVerticalLine. Is there any way to draw lines above categories ? Thanks Share this post Link to post Share on other sites
Arindam Report post Posted August 21, 2008 Hi, I am afraid this is not possible as of now. Share this post Link to post Share on other sites