Bug 228908 - Enhance Marker Ranges
Summary: Enhance Marker Ranges
Status: NEW
Alias: None
Product: z_Archived
Classification: Eclipse Foundation
Component: BIRT (show other bugs)
Version: 2.3.0   Edit
Hardware: PC Windows XP
: P3 normal (vote)
Target Milestone: Future   Edit
Assignee: Birt-Chart-inbox@eclipse.org CLA
QA Contact: Maggie Shen CLA
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-04-25 12:52 EDT by Jason Weathersby CLA
Modified: 2010-08-12 06:04 EDT (History)
1 user (show)

See Also:


Attachments
example image (18.94 KB, image/x-png)
2008-04-25 12:53 EDT, Jason Weathersby CLA
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description Jason Weathersby CLA 2008-04-25 12:52:17 EDT
It would be nice if marker ranges could be changed to not go all the way from top to bottom or left to right in a chart.  Currently in AxesRenderer.java
This is set relative to the plot client area.

horizontal
bo.set( dMin,
boPlotClientArea.getTop( ),
dMax - dMin,
boPlotClientArea.getHeight( ) );

vertical
bo.set( boPlotClientArea.getLeft( ),
dMax,
boPlotClientArea.getWidth( ),
dMin - dMax );

It would be nice if in addition to start and end values, we had the ablitliy to set the bounds for the marker range.

See attached example image of how it could be used.
Comment 1 Jason Weathersby CLA 2008-04-25 12:53:34 EDT
Created attachment 97640 [details]
example image

example image