Seek 2D Line and Bar Chart Graphs HOWTO

Can anyone share with me on where I could obtain/teach
me how to write 2D Line and Bar Chart Graphs ?
I like the class/program to be called from java code and not
from command prompt to plot points or bar graphs.
Please, no vendor recommendations.
I dont have the $ to purchase.
Any help is appreciated.
Thanks

I checked the web site of JFreeChart and its document
says to get premium service, it requires $.
I dont really have the $ to purchase that software.
It's a vendor product!Just to clarify, JFreeChart is free software, it is licensed under the GNU LGPL. You get the complete source code, including lots of demos, Javadoc HTML pages, an install document in PDF format, and access to the support forum for absolutely no charge. You don't have to pay a fee to unlock special features in the software, everything is there in the free download.
As a way of funding the project, we sell a JFreeChart Developer Guide which includes a lot more information about using JFreeChart. But it is only the documentation we sell, not the software.
Hope that helps,
Dave Gilbert
JFreeChart Project Leader
http://www.object-refinery.com/jfreechart/index.html

Similar Messages

  • Remove shades behind lines and bars in Graphs

    Hello there, new here on the forum.
    I'm using obiee 11.
    Is there a way to remove the grey shades behind lines and bars in graphs?
    Both curious to know wether that's possible in one graph or make it standard for all graphs.
    Thanx!

    Try this
    Removing drop-shadow effect on graphs
    By default, whenever a chart is created, there is a drop-shadow effect on it. This property makes it difficult to read some of the
    charts. In order to turn it off this property, edit the file dvt-graph-skin.xml from the following location on your
    installation.
    \InstallHome\Oracle_BI1\bifoundation\web\msgdb\s_blafp\viewui\chart
    Edit the <Graph> tag, add the attribute visualEffects="NONE". (Do not remove the rest of the contents in the file). After
    editing, the contents should look like this.
    <Graph visualEffects="NONE">
    <SliceLabel>
    <!-- decimalDigitUsed is false here so that non-percentage pie slices do not pick up this value
    The DVTChartProcessor sets decimalDigitUsed to true if this is a percentage pie slice -->
    <ViewFormat decimalDigit="2" decimalDigitUsed="false"/>
    </SliceLabel>
    </Graph>
    Save the file.
    Richard Chan
    Rittman Mead Oceania

  • How to plot line and bar chart in one graph

    i have one graph, but in this graph i want to plot line or bar chart using radio button selection.
    can i do that...

    You must have 2 data arrays or plots to get this. Make sure your plot legend is visible. Drag the plot legend vertical borders to view both plots. Select one of the plot to be bar plot (See the attachment)
    Attachments:
    BarPlots.PNG ‏14 KB

  • Combination line and bar chart ?

    Hi,
    I would like to show a chart with 4 rows as bar and 1 row as line chart basically a combination chart?
    Is it possible in keynote/
    Thanks.
    SG

    Insert two charts on the slide, change one to line and keep the other as bar, change the colour so the line can be easily seen.

  • SVG Multi Graph/Chart with line and bar

    I have a request for a "Multi-Graph-Chart"
    showing both - line chart and
    - bar-chart with respective data.
    Can you provide for the sourcecode, which is behind the SVG chart wizard enabling us to develop an own/individual SVG chart ?
    pls kindly advise.
    Bernhard
    nb. I mailed u this request already - but thought this might be of interest to others as well.

    Marc
    I would support this addition to functionality. I currently have a client who has a requirement for complex charting in HTMLDB, and I am looking at the SVG packages in HTMLDB, ie: WWV_FLOW_SVG, but as you say they are not independent APIs and rely heaviliy on the application's metadata. This is a shame as I could quite easily handle a nice PL/SQL API that would let me create custom SVG, instead of generating the SVG manually and embedding that in the page.
    Cheers
    Ben

  • Line chart and Bar chart

    I have been assigned task to build the line chart and bar chart in Java. Is there any Java package that supports to draw such charts?

    btw Sabre, are you still retired, being lazy and
    playing Bridge a bit? Yes Jos, I'm still retired. Nothing yet to temp me out if retirement and I play Bridge as often as possible.
    If so,
    good you lucky old bastard. Or are you longing for
    those silly project
    managers who want all the stuff finished by
    yesterday? ;-)I always ignored them anyway!
    >
    kind regards,
    Jos
    ps "when I say 'yes' that doesn't imply I
    understood the question"
    -------a project managerI only ever met one good project manager - my bank manager! He gave me all the encouragement I needed to get a project finished on time.
    Sabre

  • How to draw a straight  dotted line on Bar chart at 70%?

    Hi
    Could you please let me know how to draw a straight dotted line on BAR CHART at 70%?
    Thank you

    Hi,
    This may vary depending on what version of crystal you are using.
    Right click on the graph & go to 'chart options' & choose 'Grids'
    In the grids pane go to the grids tab.  From there check the 'draw custom line at' and specify where you want to draw the custom line.
    Once the line is drawn highlight the line, right click and go to 'chart options' & 'selected item'.
    select what format you want the line to look like (choose the dashed one).
    good luck!

  • Combined charts (line and bar)

    Where in Apex do we set which series is "Line" and which one is "Bar"? I saw the examples listed in the Anychart website but I'm getting the data as a result of SQL command in Apex so I don't have control of the series tags within the data section. Help please.
    Ana

    You may use pl/sql to generate JavaScript to create chart object and to generate xml for the chart.
    Create a Dynamic PL/SQL region in the page.
    copy following code to the source code for PL/SQL
    DECLARE
    chartData varchar2 (10000);
    BEGIN
    chartData:='<anychart>
    <charts>
    <chart>
    <data>
    <series name="Year 2003" type="Bar">
    <point name = "A" y="2166"/>
    <point name = "B" y="630"/>
    <point name = "C" y="1662"/>
    <point name = "D" y="1862"/>
    <point name = "E" y="750"/>
    <point name = "F" y="300"/>
    </series>
    <series name="Year 2000" type="Line">
    <point name = "A" y="1160"/>
    <point name = "B" y="930"/>
    <point name = "C" y="1162"/>
    <point name = "D" y="1362"/>
    <point name = "E" y="350"/>
    <point name = "F" y="300"/>
    </series>
    </data>
    </chart>
    </charts>
    </anychart>';
    HTP.p
    <div id="combiChart" >
    <script type="text/javascript" language="javascript">
        var chart = new AnyChart("/i/flashchart/swf/AnyChart.swf");
        chart.width = "500";
        chart.height = "300";
        var cData=''' || chartData  || ''';
        chart.setData(cData);      
        chart.write("combiChart");
        </script>
    END;After pasting to the code window you may be required to remove any carriage returns within above xml data. I put carriage return for clarity of xml structure.
    For further customization refer to Anychart xml reference.

  • Draw a Horizontal target line on bar chart

    I am trying to reach out to crystal report gurus for the following problem, I am relatively new with crystal reports and would really appreciate if you could provide a solution or point me in the rite direction.
    I am working on a project which requires to show various charts on an .aspx page. (.net 2.0).  I am using CR10.2.36, the one that comes with VS2005.
    My problem is I need to add a target line on a bar chart, e.g.
    I have (Y)years and (X)Examscores, I need to put a line (target line) on the Exam Scores.
        100%   |
    (X)Score  |
       45%
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _   (this is the target line I need to have)
                   |
            0%  |__________________________
                    2001          2002           2003
    now this target line should move up or down on click of a button or a .net slider control (which would be somewhere on the page).
    So I guess I need to add the target line to the bar chart programmatically after the chart loads.
    I am able to load the chart correctly but I am not able to think of a way to add the target line and there seems to be not a lot of help out there.
    I appreciate your time and help
    Thanks
    rohan

    (X)Score  
    _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _   (this is the target line I need to have)
                   |
                   |__________________________
                    2001          2002           2003
    just drew the graph again since it was not looking good above

  • Wavy lines in bar charts after converting a Powerpoint to a pdf?

    After converting a Powerpoint file to a pdf, the bar charts have wavy lines.  The one thing I noticed is that the problem appeared when creating the pdf with Notes showing.  If Notes are turned off, then the bars are fine.
    Is there a solution for this?

    Version is Office 2007.
    OS is Windows 7.
    Viewer - I think it is Acrobat 9 Pro.
    When printing, the option to print notes is chosen.  If the option is just slides, the bars in the charts are normal.
    To create a PDF, the Powerpoint file is open --> then go to Print --> in the Print dialog box, change the printer name to Adobe PDF and print.

  • Want to put horizontal lines on bar chart.

    I want to put horizontal lines across groups of bars in a bar chart depending on the mean or median. So every group of bars in a bar chart will have a line across them and their position will depend on the values of mean or median. 
    Thanks

    I really don't know. I don't have LV open in front of me. Look at the examples (Help>>Find Examples). Read the help. Play with it yourself - create a small VI with a chart and a loop and see what happens when you bundle values or build arrays.
    Try to take over the world!

  • Mapping between Icon component and Bar chart component

    Hi experts,
    I have added one world map, on which i have added 3 icon component in different area of world. At present i have added 3 different bar chart for each icon component. Now i want to take only one bar chart which sohws data according my selection of icon component.
    can anyone help on this, plz?
    Thanks in Advance,
    Rishit

    Hi
    Try the following:
    Icon1 Source data = Unchecked 0, Checked 1
    Icon1 Destination Cell $D$2
    Icon2 Source data = Unchecked 0, Checked 2
    Icon2 Destination Cell $D$3
    Icon3 Source data = Unchecked 0, Checked 3
    Icon3 Destination Cell $D$4
    Have all the icons set to be unselected.
    In cell $D$5 have the formula =max($D$2:$D$4).  This cell now controls the Dynamic Visibility of the Bar Charts.
    Barchart1, Dynamic Visibility Status = $D$5, Key = 1
    Barchart2, Dynamic Visibility Status = $D$5, Key = 2
    Barchart3, Dynamic Visibility Status = $D$5, Key = 3
    I think that's what you are asking! Please keep in mind that you have to click the icons on and off to show/hide the charts.
    Regards
    Charles

  • Vertical grid lines and Dates on Graph

    When I use date values on the x-axis for a graph, the only vertical grid lines that appear in the graph are at the year boundary. For example, if I was showing data for 3 years, I get 3 vertical grid lines; one at each January.
    How can I get vertical grid lines at each month?
    It will work if I convert the date to character, but then I lose the ability of Oracle Reports to fill in the tick marks for missing dates (say, if there isn't any data between January and March, the graph will still show a label for February).

    Hi, Ravens Fan.
    Thanks for your reply.
    Now, the main loop has a wait statement, but the problem remains. I'm using LabView 2009, and I didn't see this behaviour in the previous version, LabView 8.6.
    I send you back the uptaded program, and two snapshots as well:
    - snapshot 1: just after pressing "Run", "increment" value takes "maximum" value; due to this, there's only one text marker, at "12:00" (there should be one major grid line and one text marker every 10 minutes as "increment" value is set to 600 before entering the while loop);
    - snapshot 2: when pannning, "minor increment" takes "maximum" value, and due to this, vertical grid lines don't show any more (there should be one minor grid line every 5 minutes as "minor increment" is set to 300 before entering the while loop).
    Regards,
    Francisco
    Attachments:
    1.jpg ‏309 KB
    2.jpg ‏283 KB
    XY-Graph. Time Axis problem.vi ‏14 KB

  • Category labels fail to update in column and bar charts

    I originally posted this comment in another thread (Re: Category labels fail to update). I thought I should repost it, as the issue still exists after installing SP1 Fix Pack 2 (version 5.1.2.0), and it wasn't clear from the previous thread that the problem had been logged.
    If you have a bar chart or stacked bar chart, the category labels do not update with the underlying data when you have the "Horizonal (Value) Axis Labels" box unchecked. Same effect with a column chart if the "Vertical (Value) Axis Labels" box is unchecked.
    I'm getting around the problem in the meantime by keeping the box checked but changing the font size to zero, which reduces the labels to small dashes, and then using a font colour that matches the background as much as possible.
    ... by the way, another issue I see in this same area is that although there are separate checkboxes in charts for choosing whether to display titles and subtitles,  it is not possible to select just titles - both checkboxes appear to be locked together.
    - Peter

    Hi Tammy,
    I didn't regard #2 as bug - in fact I thought it was helpful to be able to set the size to zero as a workaround to the problem outlined in #1.
    Regarding #3, if this is by design, then I'd suggest that it's a poor design choice to have checkboxes next to both titles and subtitles, since this implies that they should be able to be separately controlled.   
    Something else I've noticed with this formatting area is that the position and offset controls are disabled, and there doesn't appear to be any way to use them.  It would be very helpful to be able to use these to move the position of chart titles.  In a dashboard I'm currently building, we have a large stack of charts sized very small, to attempt to resemble the 'sparkline' concept.  But the chart titles are so high, it's not clear which chart they refer to (they look like they might refer to the chart above it).   As a result, I've had to remove the chart titles and place independent labels over top of each chart to be able to position them closer to the chart's display area.
    Peter

  • Creating Graphs and Bar Charts

    Hi members
    I have been looking high and low to find my answer but to no avail.
    I currently run SAP AR Age debt reports once I extract this data I create graphs in excel.
    I am looking for Sap transaction where I can create a graphs and link them to T-Codes such as AGE DEBT report.
    Please help

    Hi,
    first of all you can create z tcodes only in that is in se93.so create a report either using FM or oops and link it too the tcode.
    other FMs
    GRAPH_MATRIX                   Calling up SAP Business Graphics (2D, 3D and 4D)
    GRAPH_MATRIX_2D                Calling up the 2D graphics (user-friendly version)
    GRAPH_MATRIX_3D                Structure of 3D graphics (user-friendly version)
    GRAPH_MATRIX_4D                Calling up a 3D graphic (4th dimension stacked representation).
    u can follow
    Graphs in ABAP
    hope it helps..

Maybe you are looking for