Bubble chart with connecting line

Hi All,
Is there a way we can create bubble chart with connecting line.The bubble chart has only two measure, horizontal and size of bubble connected by lines. I am not able to find this kind of chart.Is there a way for similar chart?
I am showing the chart in this link.
http://imageshack.us/photo/my-images/689/bubblewv.png/
Thanks,
Vishal
Edited by: 872073 on Sep 27, 2012 7:20 AM

I need to make an assumption to answer your question:  I need to assume that you are getting your data with a query similar to:
select DoW, Part, sum(qty) as Count
from sales
group by DoW, Part
Change that to...
select DoW, Part, sum(qty) as Count
from sales
group by DoW, Part
UNION ALL
select distinct "Target" as DoW, Part, 50 as Count
from sales
That will feed the target into the cross tab, which will create an additional column, Target, with the value 50 for all parts.  If the target is for the day, not part, then you would UNION
select distinct DoW, "Target" as Part, 50 as Count
from sales
which would give you an additional row with the constant target value of 50.
HTH,
Carl
P.S.,  There might be (probably is) better tables to use as the FROM table for the target SELECT.  I wanted to keep things simple...

Similar Messages

  • Dot chart with connecting lines

    I have some DB stats that I want to represent over time. I am wondering if this is possible with APEX and the AnyChart version it comes with.
    For example (if I have the following as a series - assume x is the hour of the day):
    select null as link, null as label, 3 as x_value, 99.8 as y_value from dual
    union all select null as link, null as label, 13 as x_value, 93.0 as y_value from dual
    union all select null as link, null as label, 21 as x_value, 99 as y_value from dual
    union all select null as link, null as label, 8 as x_value, 84 as y_value from dual
    union all select null as link, null as label, 7.5 as x_value, 76 as y_value from dual
    If I show the data as a line chart, the value for 21st hour shows up right next to the value for 13th hour. The scale is way off.
    Showing the data as a dot chart gives the proper scale... however, now I do not have lines connecting the individual dots. This can make it hard to discern the trend if I have multiple values within a one hour period.
    Other graphing solutions have something called a "scatter line" chart. I know this is doable with AnyChart 5 (XY Line Chart), but it is doable with the version coming with Apex?
    Thanks for your help.

    I have found a workaround for this problem using a 2DLine. (Although I would think that this should be doable from the APEX interface without having to do it this way).
    With a chart of type 2DLine the #DATA# section gets populated with data having the "name" attribute set (see following):
    <data>
    <block name="stats">
    <set name="3" value="99.8" />
    <set name="7.5" value="76" />
    <set name="8" value="84" />
    <set name="13" value="93" />
    <set name="21" value="99" />
    </block>
    </data>
    If I use "argument" instead of name (as follows), then it shows it correctly:
    <data>
    <block name="stats">
    <set argument="3" value="99.8" />
    <set argument="7.5" value="76" />
    <set argument="8" value="84" />
    <set argument="13" value="93" />
    <set argument="21" value="99" />
    </block>
    </data>
    So I guess the deal is to dynamically create the XML data section & use in-place subsitution.
    -) in Series definition, use function
    begin
    :MY_CHART_DATA := '<data><block name="stats"><set argument="3" value="99.88">...</block></data>';
    return 'select null as link, '' as label, 0 as val from dual where 1 = 3';
    end;
    -) In custom XML, replace #DATA# with &MY_CHART_DATA.
    If anyone finds a built-in way of doing this, let me know.

  • Creating SVG Chart with multiple lines

    Hi All,
    I want to create a chart with multiple lines.
    Ex: I have one emp table with empno, sal and deptno columns.
    I want to print deptno in x axis and no of employees on y axis.
    I want to print one line for employees with sal > 15000 and one more line for employee with sal =< 15000
    So one line will show no of employees with sal more than 15000 for each dept. Similar case for the other line and these 2 lines should be in different colors.
    For one line the query will go as
    select link, deptno, count(empno)
    from emp where sal > 15000 group by null, deptno
    Is this possible to draw this chart?
    Thanks,
    Manoj

    I wasn't able to do something like what you describe, but I was able to do this:
    I defined column A of the table as a Header Row, selected the cells in the table, and chose this chart type (2D 2 Axis):
    Then I clicked the chart and in the pane at the right checked 'Axis Name' in the Axis tab and added the axis names.
    Maybe this can give you an idea of how you can illustrate the relationships that you want to show.
    SG

  • Bubble Chart with legend changes axis dimensions according to labels length

    I have a Bubble Chart with legend on the right. Data are by series and  the series are set  dynamically with a  drop down combo which replace the content of each series from time to time.  Every time the series changes, also the name of the series changes and the legend on the right  shows the new series names. The problem is that also the x axis dimension changes according to the new labels size, so the bubble chart changes its axis width in relation to the labels length in the legend. Is its possible to make somehow the bubble chart axis of a fixed lenght?
    Xcelsius 2008, SP4, Windows XP
    Thanks in advance

    Hi Matt,
    I just got a chance to try out your suggestions, and the
    chart that is right in the main application renders the labels
    fine, but the exact same code loaded in as a module doesn't. And it
    never does, not even if the scale changes. Do you know why that
    would be?
    Mukul

  • How to use magic move with connection lines?

    When I use magic move with connection lines, they disappear and reappear in the next slide. It seems like magic move doesn't recognize the connection lines (or can't match them), so it just redraws them, instead of leaving them there.
    I'm trying to use magic move to make a nice presentation that includes connection lines. How can I make without the lines disappearing every time something moves?

    Group the shapes and connection line together:
    select the objects then Arrange > Group (alt Command G)

  • Flash line chart with multiple lines

    Here a newbie with apex...
    Created a flash line chart with as source the following sql statement:
    select null link, year, sum(total_cost) from cost
    group by year
    a chart has been created with a single line. i wanted every year on an own line.
    The way i could do this is with multiple series like:
    select null link, year, sum(total_cost) from cost
    where year =2008
    select null link, year, sum(total_cost) from cost
    where year =2009
    But this not a good solition, cause now i've to add every year a new serie
    hope to get some help from here... txn in advanced.

    tnx for your reply...
    I will explain myself more by a picture of the wanted result, see below:
    [Click here for the example image|http://img44.imageshack.us/img44/3444/grapha.jpg]
    In your reply you wright you think i can create the graph with pl/sql process. After seeing my example you still think that's needed?
    Hope you or some else can help... tnx in advanced.
    greetings

  • Bubble chart with scatter chart type and different bubble sizes

    Hello everybody,
    I would like to create a bubble chart (scatter chart) within Oracle 11g and Apex 4.2 with the standard chart types that come with Apex (anychart).
    I want to integrate two different KPIs (key performance indicators) in the chart, one for each axis (x and y) and additionally the size of the bubbles shall represent the size of the company, the KPIs belong to.
    That is to say, every bubble represents a company with two KPIs and its size.
    Now, I have problems changing the size of the bubbles. Can someone give me a hint where to start or how I could achieve this with  a standard sql query  (series) !?
    Is that possible with the standard charts (scatter type)?
    Can I control the color of the bubbles?
    How can I control the starting and ending points of the axes in order to show all bubbles completely even if they are e.g. 0,0 (x,y)  (this would show only a quarter of the bubble) or 0,3 (which would show only half of the bubble).
    I will be very thankful for some hints.
    Thank you very much in advance.
    Johnny

    Go to any chart and look at the examples.  You can view the xml, there are bubble chart examples.
    AnyChart - Cross-Platform Flash Charting Solutions For Your Project

  • Overlapping Bubble Charts with Categories

    I am struggling to create a report that looks like this in SSRS 2008 R2:
    Where I have a list of emails like this:
    I'm struggling to create an SSRS report with this data and a chart that looks like the attached:
    Email, ContactType
    [email protected], "Account Manager"
    [email protected], "Account Manager"
    [email protected], "Legal"
    Basically there is an overlap, the chart is a bubble chart that is a count of email types, and the overlapping area is where the contacts are the same email address.
    Is this even possible in SSRS?
    Scott Weeden

    Hi ScottWeeden,
    According to your description, you want to create a map displaying a overlapping area where two location share one email address. Right?
    In Reporting Service, when creating a map, we need to insert spatial data and analytical data. To relate analytical data to map elements on a layer, you must specify match fields. Match fields are used to build a relationship between map elements and
    analytical data. However, in each match field, we can only specify a unique analytical value for each spatial location. And in this scenario, you only have two fields, it's impossible to specify multiple analytical data on one location. So your requirement
    can't be achieved currently.
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

  • Web Application Designer Chart with additional Line

    Hi Guys,
    today a customer asked me to insert a line into a WAD Chart.
    This customer wants to show with this line the plan income.
    So it's an easy horizontal line, but i dont know how to insert this into the chart...
    I tried to do it with a trendline, but i didnt succeed to format this trendline as a horizontal...
    Pls help, thanks!

    Hi
    In web template there is no option to enter the value and display it in the chart.
    Always it reads the data from the report and displays in the required format like chart or table etc..
    If you want to display the entered value based on the sales dept then you need a transactional cube where the user can enter the Value via BPS dialouge and that can be displayed in a keyfigure in the report so that you will get the display in the Chart (Line)
    Regards
    Ram

  • How can I print source code with connecting lines on control structures?

    Anyone know of any programs that will format source code printouts and print connecting lines from the start to the end of control structures (such as: if--"end if", while-"end while" etc.)?

    Indentations and comments do help read source code. However, when you have a large program with many levels of nesting of control structures the readability of the code (even with indentations) becomes very difficult.

  • Line chart with one line per distinct column value

    Hi,
    For example I have a task dataobject with three fields
    type
    timeCompleted
    duration
    I would like to have a line chart that plots the average duration of tasks over time. With a separate line for each task type. Is this possible? All the examples seem to have one line correspond to one column on the dataobject.
    Jeremy

    Hi Alexandre,
    Thanks for the reply. I understand now, I didn't realise you could add the same data object multiple times with different filters. So for each task type I add the task data object to the view with a filter on the task type and this creates a new line in the chart.
    I was hoping that when data for a new task type reached the bam then I could make it automatically create a new line in the graph for that type. Oh well, I guess the creation of a new task type will be relativly rare.
    Jeremy

  • Stacked Column Chart with Lines

    Requirement:
    User stacked Column chart to display data for defects for 4 departments.
    1 or 2 lines to show baseline for defects(constant).
    Is there anyway that I can do that just like we can create one in Excel?
    (stack a Stacked column chart with a line chart is not a solution.)
    Any advises?
    Thanks,
    Wen

    Hi Wen,
    I realise that you are not going to get this to work with a standard component on its own. I think it might be possible to acheive it with overlaying barcharts and combination charts.
    My assumption is that you are looking for something that has a stack with 3 separate items in it. Two target lines crossing over the stacked chart.
    I will have a look at this to see if I can come up with something. Let me know if this is not your requirement.
    No, I don't work for SAP. I think those that do have the SAP logo beside them.
    Regards
    Alan

  • Bex Analyser: Bar chart with limit or average line, is it possible?

    Hi everyone.
    I have a short question:
    Do you know if it is possible to combine different chart types in the Bex Analyser?
    I would like to have a bar chart providing monthly values and in the same chart a line showing 1) a fixed limit and 2) another line showing an accumulated moving average.
    I have the values as source available, however I can't figure out how to combine the bar charts with a line chart in the same graph.
    Does anybody know if this is possible?
    Thanks,
    Nana

    Nana ,
    it is possible to have a Bex Chart of mixed type , you can choose the type of display for each series
    As for fixed line - you will need to have the values supplied by query
    As for moving average , that too needs to come from the query. The IGS service which renders the chart is something similar to Excel - the display options can be changed but nothing more that what is in the data table.
    Arun
    P.S Assigning points is a way of saying thank you in SDN

  • Area chart with line chart

    Hello again!  I would like to develep a area chart with a line chart in one chart. Is it possible with Crystal? Thanks!

    Did you mean a Trendline? If that is the case, right click on any of the areas in the area chart and select Trendlines from the context menu.

  • Bubble chart Show data tips always on

    Hi
    I am having a bubble chart with 2 or more series. where itemRenderer could be triangle,Cross or Circle. Now i need to display the label on the radius of item.
    Any help is heartly welcome.
    with thanks

    Thanks John, that link was very helpful.
    Shame you can't seem to get the X & Y values for a normal Line chart though. However having the series name available makes such a difference

Maybe you are looking for