Continuous line in 2D chart?

Is there a way to have a 2D line chart link any disparate data points so the line is continuous?

I would get rid of the rows, or hide them, where there is no data. Here's an example:
Table with blanks:
\T
Table with Blanks filtered out:
Jerry

Similar Messages

  • How to display non-continuous lines in a 2D Line flash chart ?

    Hi
    I am making 2D lines charts. is there a way ig tehre are no data in the table, to not to display points ?
    For example I have a table with this data :
    Date     Value
    01/01/09 2
    02/01/09 7
    03/01/09 4
    05/01/09 3
    06/01/09 2You see in the example anove that there is no data for the day 04/01/09.
    I would like the chart no to display any point for that day and start again for date following. This means displaying a non-continuous line.
    I hope I am clear.
    I tried but had no solutions. Would you have any idea on this ?
    Thank you for your kind help !
    Christian

    Hi Christian
    You're missing a lot of the XML build up from the website.
    You also need to return the string "Missing" for each date that you haven't got.
    Try this to get you started (you'll certainly need to fiddle with it to get it working)...
    DECLARE
       l_xml   VARCHAR2 (32767);
       start_date DATE;
       end_date DATE;
       the_date DATE;
       count_holder VARCHAR2(10);
    BEGIN
       l_xml :=        '<anychart> ';
       l_xml := l_xml||'<settings> ';
       l_xml := l_xml||'<animation enabled="True"/> ';
       l_xml := l_xml||'</settings> ';
       l_xml := l_xml||'<charts> ';
       l_xml := l_xml||'<chart plot_type="Scatter"> ';
       l_xml := l_xml||'<chart_settings> ';
       l_xml := l_xml||'<chart_background> ';
       l_xml := l_xml||'<border color="#990099"/> ';
       l_xml := l_xml||'</chart_background> ';
       l_xml := l_xml||'<title enabled="true"> ';
       l_xml := l_xml||'<text> Something </text> ';
       l_xml := l_xml||'</title> ';
       l_xml := l_xml||'<axes> ';
       l_xml := l_xml||'<x_axis tickmarks_placement="Center"> ';
       l_xml := l_xml||'<title enabled="true"> ';
       l_xml := l_xml||'<text>Date</text> ';
       l_xml := l_xml||'</title> ';
       l_xml := l_xml||'</x_axis> ';
       l_xml := l_xml||'<y_axis> ';
       l_xml := l_xml||'<scale minimum="1" type="Linear"/> ';
       l_xml := l_xml||'<title enabled="true"> ';
       l_xml := l_xml||'<text>Count</text> ';
       l_xml := l_xml||'</title> ';
       l_xml := l_xml||'</y_axis> ';
       l_xml := l_xml||'</axes> ';
       l_xml := l_xml||'</chart_settings> ';
       l_xml := l_xml||'<data_plot_settings default_series_type="Line"> ';
       l_xml := l_xml||'<line_series point_padding="0.2" group_padding="1"> ';
       l_xml := l_xml||'<label_settings enabled="true"> ';
       l_xml := l_xml||'<background enabled="false"/> ';
       l_xml := l_xml||'<font color="Rgb(45,45,45)" bold="true" size="9"> ';
       l_xml := l_xml||'<effects enabled="true"> ';
       l_xml := l_xml||'<glow enabled="true" color="White" opacity="1" blur_x="1.5" blur_y="1.5" strength="3"/> ';
       l_xml := l_xml||'</effects> ';
       l_xml := l_xml||'</font> ';
       l_xml := l_xml||'<format>{%YValue}{numDecimals:0}</format> ';
       l_xml := l_xml||'</label_settings> ';
       l_xml := l_xml||'<tooltip_settings enabled="true"> ';
       l_xml := l_xml||'<format> ';
       l_xml := l_xml||'Something: {%YValue}{numDecimals:0} ';
       l_xml := l_xml||'Date: {%Name} ';
       l_xml := l_xml||'</format> ';
       l_xml := l_xml||'<background> ';
       l_xml := l_xml||'<border type="Solid" color="DarkColor(%Color)"/> ';
       l_xml := l_xml||'</background> ';
       l_xml := l_xml||'<font color="DarkColor(%Color)"/> ';
       l_xml := l_xml||'</tooltip_settings> ';
       l_xml := l_xml||'<marker_settings enabled="true"/> ';
       l_xml := l_xml||'<line_style> ';
       l_xml := l_xml||'<line thickness="3"/> ';
       l_xml := l_xml||'</line_style> ';
       l_xml := l_xml||'</line_series> ';
       l_xml := l_xml||'</data_plot_settings> ';     
       l_xml := l_xml||'<data> '; 
       l_xml := l_xml||'<series name="Count"> ';     
       start_date := TO_DATE('01/01/2009');
       end_date   := TO_DATE('10/01/2009');
       the_date   := start_date;
       WHILE the_date <= end_date
       LOOP
        SELECT DECODE(COUNT(*),0,'Missing',COUNT(*))
        INTO the_count
        FROM evv_stpl
        WHERE date1 = the_date;
        l_xml := l_xml || '<point name = "'|| the_date ||'" y="'|| the_count ||'"/>';
        the_date := the_date + INTERVAL '1' DAY;
       END LOOP;
       l_xml := l_xml ||'</series> ';
       l_xml := l_xml ||'</data> ';
       l_xml := l_xml ||'</chart> ';
       l_xml := l_xml ||'</charts> ';
       l_xml := l_xml ||'</anychart>';
       HTP.p
    <html>
    <head>
    <title>AnyChart Sample</title>
    <script type="text/javascript" language="javascript" src="D:\oracle\product\10.2.0\apache\Apache\Apache\images\flashchart\AnyChart.js"></script>
    <body>
    <div id="chartDiv-1"></div>
        <script type="text/javascript" language="javascript">
        //<![CDATA[
        AnyChart.swfFile = ''D:\oracle\product\10.2.0\apache\Apache\Apache\images\flashchart\AnyChart.js'';
        var chart = new AnyChart();
        chart.width = "800";
        chart.height = "600";
        var data = '''
           || l_xml
           || ''';
        chart.setData(data);
        chart.write("chartDiv-1");
        //]]>
        </script>
    </body>
    </html>
    END;Hopefully you understand what I'm trying to do here, unfortunately I can't try it out myself at the moment.
    Maybe if you get stuck you could post it on apex.oracle.com?
    Cheers
    Ben
    Oops, handled a count of zero incorrectly - amended
    Edited by: Munky on May 7, 2009 1:17 PM

  • Line Time Series Chart not working

    Hi All,
    I have one Line Time Series chart where on the X Axis i have taken one date and on Y axis one Sales Figure.Now on the Measure Lables i have taken on dimension as Customer.
    So the chart will give me something like trend which customer has how much sales figures daywise.
    Now the issue is that it shows the trend for one customer correct and shows the line but if i select second customer the graph doesnt show the line just dot for the second customer.
    Any help in this regard

    Thanks Vinod for the reply.
    Second customer doesnt have data on consecutive days but there is no pattern in that.He has data on 3rd,7th,8th,10th,15th day.
    But for all these days for the second customer dots are coming but not in the case for First Customer.
    Regards

  • Any Way to Change Thickness of Connector Lines for all lines of a Chart?

    Post Author: ScottL
    CA Forum: Charts and Graphs
    Hi All,
    I am trying to change the thickness of a Chart's Connector Lines for all lines of a chart and cannot find a way to accomplish this. I can go into Report Preview and individually change the thickness one at a time, but what if I do not know how many lines I will have (as in a Line Chart) ? I can't find a way to do this through Crystal Reports XI.
    Many thanks in advance!
    Scott

    I think it's even easier to just match frame the "source file"... put your playhead on the clip you want to speed change in your sequence. Then type optioncmdf. Perform the speed change in the Viewer, then simply cut it in... Might help to put it up above the older, use the double arrow selection tool facing right to move the clips past this change later... pull the upper track speed changed clip down over the old, and viola.
    Gotta say though, it's a lot easier to perform the speed change in the Viewer, and edit it all in as you go rather than doing it after you've put the clip in a sequence. (not always possible to determine what the speed change should be maybe, but sure easier.... FCP 7 handles this problem a lot better for sure, and worth the upgrade price if your machine is compatible.
    Jerry

  • Need help in Line bar combo chart - line is not prominent in dashboard

    Hi All,
    I face an issue where the line in a line bar combo chart is not prominent in Dashbords.
    lets say i have 5 reports (all of them are line bar combo charts) in a dashboard. The lines in graph are not prominent or not displayed in usual thickness. But this scenario does not happen always. if i scroll down or up the browser(here i am using IE8) some of the reports displays line in the charts and some does not display the line. when i click on the report then the line will be displayed.
    please suggest whether this is a browser issue ror something to deal with OBIEE itself.
    Thanks in advance.

    Hi,
    It's a bug in obiee11g. kindly download the patch file from My Oracle Support and delpoye it
    OBIEE 11g: Line Bar Combo , With Stacked Chart , The Bar Width Gets Affected [ID 1369493.1]
    Patch 12947990: BAR CHANGES WIDTH WHEN CHART CHANGED FROM DEFAULT LINE-BAR TO STACKED LINE-BAR
    Symptoms
    When the chart type is changed from Standard or Default line-bar to Stacked line-bar chart, the bars are reducing their width.
    Line-bar should keep the width of the previous bars.
    However, when vertical Bar is changed to stacked vertical, the bar width remains the
    same. But when a regular Line-Bar is changed to stacked vertical, the width
    changes (reduces, in this case it becomes half the original width)
    Cause
    For dual Y stacked bar graph, the bar width was half of the regular bar width
    because the series assigned to Y2 was given the half of the space also. This is not needed if the marker type for Y2 is not bar.
    The following bugs have been opened to handle this issue
    Reference Bug:
    Bug 12931660 - line bar combo with stacked chart changes its width
    BUG:12931660 - LINE BAR COMBO WITH STACKED CHART CHANGES ITS WIDTH
    BUG:12947990 - BAR CHANGES WIDTH WHEN CHART CHANGED FROM DEFAULT LINE-BAR TO STACKED LINE-BAR
    Patch 12947990: BAR CHANGES WIDTH WHEN CHART CHANGED FROM DEFAULT LINE-BAR TO STACKED LINE-BAR
    Bug Ref:
    e.x: applying patch file refer the below file
    http://obieeelegant.blogspot.com/2011/11/how-to-apply-patches-using-opatch.html
    Thanks
    Deva

  • Adding a Goal Line to a chart in Webi

    Post Author: geozuh
    CA Forum: WebIntelligence Reporting
    Does anyone know how to add a goal line to a chart created in WEbi? It seems like this would be a standard option.

    Post Author: jsanzone
    CA Forum: WebIntelligence Reporting
    geozuh,
    You would think that adding a goal line to a WebI report would be an available option within the software package, but it is not (but this sure sounds like a viable enhancement, so hopefully some of the Business Objects Enhancement Gurus are listening in).
    It should be possible with a bit of fiddling with data in your database to create a "reference-type" table that could mimic all of the data values present but you would "plug" a metric-type column with the goal.  For instance, on your bar graph you have x and y coordinates.  The x could be the total sales by year, the y is the items (I know, I should be using an example from E-Fashion, but I'm not up-to-speed on it).  In your "reference-type" table you would replicate all of the year and item data and create a new column (perhaps called "goal") which you plug with the goal value.  In your universe you can link the two tables and when the report runs, voila you have all of your data.  Now you can use the "vertical bar and line" graph to plot your old x and y and use z for the goal.  Just a thought, and I know, "it's the long road to China", but hopefully you've got some ideas to tool with now.

  • Adding Threshold line in column chart

    Hi All,
         Is there any way to show the threshold line in column chart? This is a high priority requirement in my project. Any kind of help is appreciated.

    You can use the DataCanvas, this should help.
    http://livedocs.adobe.com/flex/3/html/help.html?content=charts_eventsandeffects_14.html

  • Benchmarking line in the chart

    Hi
    I have created one VC model for comparitive analysis of feedack of the training program. Based on this i want some benchmark so that i can compare this with others. To do this i want to show some benchmarking line in my chart. How do i do this?
    Thanks in advance
    Deepdas
    Edited by: Deepdas on Nov 6, 2009 4:16 PM

    Hi
    There is another way also of doing same thing -
    1. First select 'Grid Lines' as Horizontal in the chart.
    2. Then set value range manual & give min & max values.
    3. Adjust interval size so as your 'Benchmark value' will come as one of the intervals.
    Earlier what i explained is visible only if there are more than 1 values on category axis for a given field.
    Regards
    Sandeep

  • Thick continuous line in smartform output

    Hello Experts,
    I need to print a thick continuous line in a smart form output. I have to print this after/before specific data that is going to be printed through a template.
    can any one through some light on me regarding this?
    Regards,
    Usha.

    hi usha,
    There are four options in template tab LOWER FRAME, UPPER FRAME, RIGHT FRAME, LEFT FRAME using these u can get the solution for this thread.
    select that particular frame in template and click on specific option.
    regards,
    sujatha.

  • 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

  • PS CC 2014 - Brush tool will not draw a continuous line

    Brush tool will not draw a continuous line, I am on a macbook pro.
    Click and drag - I only get a spot.
    Very frustrating.

    Thanks for your answer PK. I really expected this to work as an ok workaround.... Now I've found that I cannot even cmd+tab back into CC.
    Let's say I tab out into Safari. I get the Safari window on top of CC. I tab back to CC and nothing happens.
    So I have to click back into the CC window to bring it back.
    Does anyone know if that is a bug that Adobe are looking into?

  • 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!

  • 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

  • How can I change the colour of the line in a chart in Numbers for Ipad?

    I have placed two line charts, one in top of the other, and I need one of the lines to be Red, I can't find a way to do it.
    thanks.

    Hi Jean-Michel,
    If you dig down a few levels from the top-level Polar Plot VI, you will find vi.lib\picture\polarplt.llb\Plot Polar Data.vi. Inside this VI is a VI called "Draw Multiple Lines.vi", which has a "pen" input. This input is currently not wired, so it defaults to a line style of "Solid", and a width of "1". If you take this input and propogate it all the way up to the top-level Polar Plot VI, you can now specify the line width and style of your polar plot.
    I have submitted this as a suggestion, so perhaps we will see it in a future version of LabVIEW.
    -D
    Darren Nattinger, CLA
    LabVIEW Artisan and Nugget Penman

  • How to print continue Line Numbers  in PLD  Differen repetitve areas.

    Hi,
    We need to print line numbers continues in different Repetitive areas.
    Ex. Repetitve Area 0 we have item Discriptions
          Repetitve Area  Footer1 we created sotvalue() here it will display servicetaxes
          Repetitve Area Footer1 we created one text roundoff
    we need output like
    Ex:1. Dell        **Repetitve Area 0****           
          2.Mouse     **Repetitve Area 0****           
          3.Laptop      **Repetitve Area 0****             
          4.servicetax   **Repetitve Area Footer1****           
          5.cess             **Repetitve Area Footer1****           
          6.Hcess             **Repetitve Area Footer1****           
          7.Roundoff           **Repetitve Area Footer1****    as a text field       
      for above all we need to print Line numbers sequence how we can print sequence numbers for differen  areas.if i  assigned Linenum( ) in Repetitve Area 0 it will display one for Repetitve Area 0 only.and i applied Gouplinenum also it's not printing. please guide me how to print this.
    regds,
    sampath kumar devunuri.

    Hi,clint pow.
    Please we did what you said but we are not retreiving data.please tell me how we can get serieal numbers for different repetitve areas.
    regds,
    sampath.

Maybe you are looking for