AnyChart Radar chart with APEX

Hi all,
I need to create Apex application that requires page to display radar chart, combined chart (bar & line). I understand that those charts are not come with APEX 4.1.0 (my APEX version). I look at AnyChart product since I see people talked in Oracle Forums. I would like to know if someone who has used AnyChart product creates radar / polar charts in APEX can give me any suggestion. My current environment is
Apex 4.1.0, oracle 11g and a browser is IE 8.
The company that I work for doesn’t have any plan to upgrade IE version. So I have limited tools to work with. On AnyChart web site, it shows radar chart in Flash, HTML5, and XML code. I can see the chart in Flash and XML code ok. I don’t know how radar chart will work in APEX and IE 8. Any helped explanation would be appreciated.

Hi jessi,
We can combine both line and bar chart in apex.
Try by doing the following,
1.Create the chart region with the chart type as 3D Column.
2.Then parse the query that you want to show in chart(it will select the series type as bar by default).
eg. select null link,ename, sal from emp; 3.Create the second series by editing the chart attributes.
4.select the series type as line. Then parse the query that you want to combine with the above bar chart.
eg. select null link,ename, avg(sal) over() avg_sal from emp; By this way we can combine the charts by adding the series,Check whether this is your requirement.
Thanks,
SreeNithi.

Similar Messages

  • Gantt Charts with APEX

    Hello
    Has anybody managed to integrate Gantt Charts with APEX and got them working. I'm required to provide some similar reports.
    I understand Gantt charts are available in AnyCharts 5 but I need the XML to convert or at least a How To Do document.
    Any any other ideas would be appreciated.
    Cheers
    Ade

    Hi Ade,
    We have built an Anychart Integration Kit for APEX, if you take a look at -
    http://anychart.apex-evangelists.com
    and specifically -
    http://anychart.apex-evangelists.com/pls/apex/f?p=454:14:0:
    You'll see that anything is possible ;)
    We've concentrated on the core Anychart Functionality in the Integration Kit and will be releasing more powerful versions shortly.
    Hope this helps,
    John.
    Blog: http://jes.blogs.shellprompt.net
    Work: http://www.apex-evangelists.com
    Author of Pro Application Express: http://tinyurl.com/3gu7cd
    REWARDS: Please remember to mark helpful or correct posts on the forum, not just for my answers but for everyone!

  • How to get multiple value on html chart with apex

    Hi All,
    I'm looking for a way to compare 2 value on a html chart with apex (ex. Budget with expense).
    Some one know how I could make a chart with 2 value ( a kind of histogram with the bar Budget and expenses side to side with only one title)
    Thanks all !
    Edited by: 844999 on 2011-04-05 07:59

    sims wrote:
    Hi Anil,
    Its a standard page & i want it on click of apply button but my question is when i click apply button it navigates to other page..is it possible in such scenario to extend the controller.
    Thnx for ur suggestion
    SimsThat is not an issue, you can extend the controller of that page and get the value of sequence and set it to the VO attribute.
    Thanks
    --Anil
    http://oracleanil.blogspot.com

  • Radar charts in APEX?

    Hi,
    I have an excel with radar chart and wanted to implement the same in APEX. Do we have an option to radar chart or is it possible include third party charts?
    Please let me know.

    They aren't built in but you might find them in a third-party product. It look like AnyChart (whose base charts are included with Apex) is planning to add that chart type to their product. When they do, you could integrate it with your Apex application. FYI, AnyChart is a commercial product.

  • Create Charts With APEX

    Hello, may someone help me with charts on apex?
    I need to create a Radar Chart, this kind of chart isn't avaible on APEX then, I should buid it,
    I have found some models of this chart, but I'm not getting sucefull when I try to use the data from my database.
    I'm using APEX 4.1.
    Thak's everybody.

    LeoVic - Hello,
    Can you make an example on apex.oracle.com to show us what you have so far?
    Here's an example of mine -- but with a line chart. http://apex.oracle.com/pls/apex/f?p=43250:3 Login: Dever PW: Ima9Dever
    And then tell us what you would want to be different.
    Best wishes,
    Howard

  • How to create a spidar chart (Radar chart) with an array collection object...

    Hi All,
              I need to create Spidar (Radar) chart in my application with the help of an array collection object........can any one help me ?? do i need to import any external library ???
    Please provide the required code for it .........
    Thanks in advance....

    You'll need to set the "series" property of the chart. This will be an array of BarSeries objects.
    You may also need to set the horizontalAxis and verticalAxis properties for the chart. (I forget if there are defaults for these.)

  • Radar chart with multiple KPIs with different scales in dashboard4.0

    Hi Experts,
    How to create a radar chart which is having multiple KPIs with different scales. ?
    Thanks in Advance
    Saidulu

    Hi Sai,
    Customizing the chart is not possible, example the data in you criteria is like the below.
    Take four row based chart to display the row based values, if the columns are having different values. Take column based chart if the difference in row based, hope you got it.
    Use the label in combo box and use the dynamic visiblity to call the chart from the back.
    Hope you got the idea.
    --SumanT

  • Radar Chart

    Hi
    The standard charts with Apex 2.2 do not include a radar chart.
    How would I go about creating my own? Is there any example code for radar charts available?
    Thanks
    Chris

    XML / SWF Charts provide almost all the types of charts. If radar chart is a polar chart then
    you might want to look here:
    http://htmldb.oracle.com/pls/otn/f?p=31517:58
    Denes Kubicek

  • Dynamic radar chart

    Hi, I need to make a dynamic radar chart with some XML data.
    I was going to do this by dynamically positioning the vertices of a polystar shape to align with vertices on each of the chart axis, so that the polystar gets stretched out as required across the chart. I know how to read the XML data, but my questions are:
    1. Is that possible / a stupid way of doing it?
    2. What AS commands should I be looking up in order to get/set the position of  vertices?
    Thanks
    T

    what specifically do you want to know? the short answer is
    with a lot of action-scripting!

  • Apex flash charts with date values on the x axis

    I am playing around in Apex 4 using flash charts and having a bit of troubles playing with dates on the x axis on a 2d line chart.
    What I am trying to achive is a values plotted across the chart and the date/time values are not a constent (ie not continually say 1 hour apart) hence why I want to use a datatype of date.
    In the SQL below:
    select null as link,  sysdate -2  as value, 0 as label from dual
    union
    select null , sysdate -2+1/24 , 1 from dual
    union
    select null , sysdate -2+2/24 , 2 from dual
    union
    select null , sysdate -2+5/48, 1 from dual
    union
    select null , sysdate -2+3/24, 0 from dual;I get a 2D Line chart but each date/time value is equally space apart (ie sysdate -2, sysdate -2+1/24, sysdate -2+2/24 and sysdate -2+3/24 should be 1 unit apart and sysdate -2+5/48 should be half way between sysdate -2+2/24 and sysdate -2+3/24).
    I think I have to use custom xml. Using http://www.anychart.com/products/anychart/docs/xmlReference/index.html and http://www.anychart.com/products/anychart/docs/users-guide/DateTime-Axes.html I edited the XML and changed:
    <?xml version = "1.0" encoding="utf-8" standalone = "yes"?>
    <anychart>
      <settings>
        <animation enabled="false"/>
        <no_data show_waiting_animation="False">
          <label>
            <text></text>
            <font family="Verdana" bold="yes" size="10"/>
          </label>
        </no_data>
      </settings>
      <margin left="0" top="" right="0" bottom="0" />
      <charts>
        <chart plot_type="CategorizedVertical" name="chart_1614502819445708">
          <chart_settings>
            <title enabled="False" />
            <chart_background>
              <fill type="Solid" color="0xffffff" opacity="0" />
              <border enabled="false"/>
              <corners type="Square"/>
            </chart_background>
            <data_plot_background>
            </data_plot_background>
            <axes>
              <y_axis >
                <scale   mode="Normal"    />
                <title enabled="false" />
                <labels enabled="true" position="Outside">
                  <font family="Tahoma" size="10" color="0x" />
                  <format><![CDATA[{%Value}{numDecimals:0,decimalSeparator:.,thousandsSeparator:\,}]]></format>
                </labels>
                <major_grid enabled="False"/>
    <minor_grid enabled="False"/>
              </y_axis>
              <x_axis>
                <scale  mode="Normal"    />
                <title enabled="false"/>
                <labels enabled="true" position="Outside">
                  <font family="Tahoma" size="10" color="0x" />
                  <format><![CDATA[{%Value}{numDecimals:0,decimalSeparator:.,thousandsSeparator:\,}]]></format>
                </labels>
                <major_grid enabled="True" interlaced="false">
                    <line color="Black" />
                  </major_grid>
    <minor_grid enabled="True">
                  </minor_grid>
              </x_axis>
            </axes>
          </chart_settings>
          <data_plot_settings enable_3d_mode="false" >
            <line_series>
              <tooltip_settings enabled="true">
                <format><![CDATA[{%Name}{enabled:False} - {%Value}{numDecimals:0,decimalSeparator:.,thousandsSeparator:\,}]]></format>
                <font family="Tahoma" size="10" color="0x" />
                  <position anchor="Float" valign="Top" padding="10" />
              </tooltip_settings>
              <label_settings enabled="true" mode="Outside" multi_line_align="Center">
                <format><![CDATA[{%Value}{numDecimals:0,decimalSeparator:.,thousandsSeparator:\,}]]></format>
                <background enabled="false"/>
                <font family="Tahoma" size="10" color="0x" />
              </label_settings>
              <line_style>
                                <line enabled="true" thickness="1" opacity="1" />
              </line_style>
              <marker_settings enabled="True" >
                <marker type="Circle" />
              </marker_settings>
            </line_series>
          </data_plot_settings>
    #DATA#
        </chart>
      </charts>
    </anychart>to
    <?xml version = "1.0" encoding="utf-8" standalone = "yes"?>
    <anychart>
      <settings>
        <animation enabled="false"/>
        <no_data show_waiting_animation="False">
          <label>
            <text></text>
            <font family="Verdana" bold="yes" size="10"/>
          </label>
        </no_data>
        <locale>
          <date_time_format>
            <format>%HH:%mm:%ss %dd/%MM/%yyyy</format>
          </date_time_format>
        </locale>
      </settings>
      <margin left="0" top="" right="0" bottom="0" />
      <charts>
        <chart plot_type="CategorizedVertical" name="chart_1614502819445708">
          <chart_settings>
            <title enabled="False" />
            <chart_background>
              <fill type="Solid" color="0xffffff" opacity="0" />
              <border enabled="false"/>
              <corners type="Square"/>
            </chart_background>
            <data_plot_background>
            </data_plot_background>
            <axes>
              <y_axis >
                <scale   mode="Normal"    />
                <title enabled="false" />
                <labels enabled="true" position="Outside">
                  <font family="Tahoma" size="10" color="0x" />
                  <format><![CDATA[{%Value}{numDecimals:0,decimalSeparator:.,thousandsSeparator:\,}]]></format>
                </labels>
                <major_grid enabled="False"/>
    <minor_grid enabled="False"/>
              </y_axis>
              <x_axis>
                <scale  mode="Normal" type="DateTime"    />
                <title enabled="false"/>
                <labels enabled="true" position="Outside">
                  <font family="Tahoma" size="10" color="0x" />
                  <format><![CDATA[{%Value}]]></format>
                </labels>
                <major_grid enabled="True" interlaced="false">
                    <line color="Black" />
                  </major_grid>
    <minor_grid enabled="True">
                  </minor_grid>
              </x_axis>
            </axes>
          </chart_settings>
          <data_plot_settings enable_3d_mode="false" >
            <line_series>
              <tooltip_settings enabled="true">
                <format><![CDATA[{%Name}{enabled:False} - {%Value}{numDecimals:0,decimalSeparator:.,thousandsSeparator:\,}]]></format>
                <font family="Tahoma" size="10" color="0x" />
                  <position anchor="Float" valign="Top" padding="10" />
              </tooltip_settings>
              <label_settings enabled="true" mode="Outside" multi_line_align="Center">
                <format><![CDATA[{%Value}{numDecimals:0,decimalSeparator:.,thousandsSeparator:\,}]]></format>
                <background enabled="false"/>
                <font family="Tahoma" size="10" color="0x" />
              </label_settings>
              <line_style>
                                <line enabled="true" thickness="1" opacity="1" />
              </line_style>
              <marker_settings enabled="True" >
                <marker type="Circle" />
              </marker_settings>
            </line_series>
          </data_plot_settings>
    #DATA#
        </chart>
      </charts>
    </anychart>and change the SQL series to:
    select link, to_char(value, 'HH24:MI:SS DD/MM/YYYY') as value, label from
    select null as link,  sysdate -2  as value, 0 as label from dual
    union
    select null , sysdate -2+1/24 , 1 from dual
    union
    select null , sysdate -2+2/24 , 2 from dual
    union
    select null , sysdate -2+5/48, 1 from dual
    union
    select null , sysdate -2+3/24, 0 from dual)But the chart changes from a line chart to a bar chart with each value being equally spaced.
    Can anyone see what I am doing wrong or point me in the right direction? Thanks in advance.

    This will be a little bit lengthy answer, but I guess it will be easier to understand what I meant to say.
    I created a table that contains values you used as a data source (just to make my life easier):
    SQL> alter session set nls_date_format = 'dd.mm.yyyy hh24:mi:ss';
    Session altered.
    SQL> select * from test;
    VALUE                    LABEL
    12.10.2010 09:03:45          0
    12.10.2010 10:03:45          1
    12.10.2010 11:03:45          2
    12.10.2010 11:33:45          1
    12.10.2010 12:03:45          0
    SQL> alter session set nls_date_format = 'hh24:mi';
    Session altered.From now on, we'll see only hours and minutes.
    Step 1: current and previous values - difference in number of MINUTES
    SQL> select t.value,
      2         lag(t.value) over (order by t.value) previous_value,
      3         (t.value - lag(t.value) over (order by t.value)) * 24 * 60 minutes_diff
      4  from test t;
    VALUE PREVI MINUTES_DIFF
    09:03
    10:03 09:03           60
    11:03 10:03           60
    11:33 11:03           30
    12:03 11:33           30Step 2: a little bit of calculation:
    - TIME_SPAN: how many minutes are there between MIN and MAX date?
    - MIN_DIFF: what is the minimum time difference (minutes)?
    - SLICES: how many time slices do we want on the x-axis?
    SQL> select
      2    min(x.value) min_val,
      3    max(x.value) max_val,
      4    min(x.minutes_diff) min_diff,
      5    (max(x.value) - min(x.value)) * 24 * 60 time_span,
      6    (max(x.value) - min(x.value)) * 24 * 60 / min(x.minutes_diff) slices
      7  from (select t.value,
      8               lag(t.value) over (order by t.value) previous_value,
      9               (t.value - lag(t.value) over (order by t.value)) * 24 * 60 minutes_diff
    10        from test t
    11       ) x;
    MIN_V MAX_V   MIN_DIFF  TIME_SPAN     SLICES
    09:03 12:03         30        180          6There's 180 minutes between 09:03 and 12:03; minimum time difference in our TEST table is 30 minutes, so - we want to have 6 time slices on the x-axis (180 / 30).
    Step 3: row generator technique: let's create time values that are missing:
    SQL> select y.min_val + (level - 1) * y.min_diff / (24 * 60) val
      2  from (select
      3          min(x.value) min_val,
      4          max(x.value) max_val,
      5          min(x.minutes_diff) min_diff,
      6          (max(x.value) - min(x.value)) * 24 * 60 time_span,
      7          (max(x.value) - min(x.value)) * 24 * 60 / min(x.minutes_diff) slices
      8        from (select t.value,
      9                     lag(t.value) over (order by t.value) previous_value,
    10                     (t.value - lag(t.value) over (order by t.value)) * 24 * 60 minutes_diff
    11              from test t
    12             ) x
    13       ) y
    14  connect by level <= y.slices + 1;
    VAL
    09:03
    09:33
    10:03
    10:33
    11:03
    11:33
    12:03
    7 rows selected.OK, now we have 30 minutes between every time value.
    Step 4: join newly generated time values with the original table. Use OUTER JOIN; missing labels will be 0 (zero):
    SQL> select
      2    null link,
      3    to_char(z.val, 'hh24:mi') new_value,
      4    nvl(t1.label, 0) new_label
      5  from (select y.min_val + (level - 1) * y.min_diff / (24 * 60) val
      6        from (select
      7                min(x.value) min_val,
      8                max(x.value) max_val,
      9                min(x.minutes_diff) min_diff,
    10                (max(x.value) - min(x.value)) * 24 * 60 time_span,
    11                (max(x.value) - min(x.value)) * 24 * 60 / min(x.minutes_diff) slices
    12              from (select t.value,
    13                           lag(t.value) over (order by t.value) previous_value,
    14                           (t.value - lag(t.value) over (order by t.value)) * 24 * 60 minutes_diff
    15                    from test t
    16                   ) x
    17             ) y
    18        connect by level <= y.slices + 1
    19       ) z,
    20       test t1
    21  where t1.value (+) = z.val
    22  order by z.val;
    L NEW_V  NEW_LABEL
      09:03          0
      09:33          0
      10:03          1
      10:33          0
      11:03          2
      11:33          1
      12:03          0
    7 rows selected.Cool, so we have them all. Now, go to Apex and create a chart using a query from step #4.
    I tested it - it displays something which means that it should work for you too (unfortunately, this forum doesn't accept attachments so that you could see it). Now, I can't tell whether that's what you need or not, but - if the idea itself is OK, it can be adjusted (I hope so).

  • Examples of ]AnyChart with apex

    Hello
    Do you know or have some examples which use the AnyChart tool with Apex?
    The link of AnyChart tool is:
    http://www.anychart.com/
    Thanks in advance
    Best regards

    I am trying to create a asynchronous AnyChart 4.2 graph.. and I am starting with a basic graph that I already have working in PL/SQL
    But I don't get any graph showing?
    Any ideas?
    thanks
    Dean
    <html>
    <body>
    <div id="chartDiv-6"></div>
        <script type="text/javascript" language="javascript">
        var chart6 = new AnyChart('/i/flashchart/swf/AnyChart.swf');
        chart6.width = "500";
        chart6.height = "300";
        var data6 = new htmldb_Get(null,&APP_ID.,
                  'APPLICATION_PROCESS=BCM_DURATION',&APP_PAGE_ID.);
        gReturn = data6.get('XML');
        chart6.setData(gReturn);
        chart6.write("chartDiv-6");
        </script>
    </body>
    </html> I have this Application Process called BCM_DURATION
    DECLARE
       y_min   NUMBER;
       y_max   NUMBER;
    BEGIN
       OWA_UTIL.mime_header ('text/xml', FALSE);
       HTP.p ('Cache-Control: no-cache');
       HTP.p ('Pragma: no-cache');
       OWA_UTIL.http_header_close;
       HTP.prn ('<anychart>');
       HTP.prn ('<settings>');
       HTP.prn ('<animation enabled="FALSE" />');
       HTP.prn ('</settings>');
       HTP.prn ('<charts>');
       HTP.prn ('<chart plot_type="CategorizedVertical">');
       HTP.prn ('<chart_settings>');
       HTP.prn ('<title enabled="true">');
       HTP.prn ('<text>Machine RUN Time in last 24hrs</text>');
       HTP.prn ('</title>');
       HTP.prn ('<subtitle enabled="false">');
       HTP.prn ('<text>by Product</text>');
       HTP.prn ('</subtitle>');
       HTP.prn ('<axes>');
       HTP.prn ('<x_axis>');
       HTP.prn ('<title enabled="true">');
       HTP.prn ('<text>Machine</text>');
       HTP.prn ('</title>');
       HTP.prn ('</x_axis>');
       HTP.prn ('<y_axis>');
       HTP.prn ('<title enabled="TRUE">');
       HTP.prn ('<text>Rate</text>');
       HTP.prn ('</title>');
       SELECT (TRUNC (MIN (d.duration) / 5) - 1) * 5 minn,
              (TRUNC (MAX (d.duration) / 5) + 1) * 5 maxx
       INTO y_min, y_max
       FROM (SELECT d.machine_id,
                    TRUNC (SUM (d.duration) / 60 / 60 / 24 * 100) duration
             FROM css.operation_duration_bcm@css d
             WHERE d.start_date > SYSDATE - 1 AND d.status = 2
             GROUP BY d.machine_id) d;
       HTP.prn ('<scale maximum="' || y_max || '" minimum="' || y_min || '" />');
       HTP.prn ('</y_axis>');
       HTP.prn ('</axes>');
       HTP.prn ('</chart_settings>');
       HTP.prn ('<data>');
       HTP.prn ('<series name="SL" type="Bar">');
       FOR d
       IN (SELECT d.machine_id,
                  TRUNC (SUM (d.duration) / 60 / 60 / 24 * 100) duration
           FROM css.operation_duration_bcm@css d
           WHERE d.start_date > SYSDATE - 1 AND d.status = 2
           GROUP BY d.machine_id
           ORDER BY 1)
       LOOP
          HTP.prn(   '<point name = "'
                  || d.machine_id
                  || '" y="'
                  || d.duration
                  || '"/>');
       END LOOP;
       HTP.prn ('</series>');
       HTP.prn ('</data>');
       HTP.prn ('</chart>');
       HTP.prn ('</charts>');
       HTP.prn ('</anychart>');
    END;Edited by: Postie on Nov 18, 2008 3:43 PM
    Edited by: Postie on Dec 3, 2008 12:53 PM

  • Anychart 5.1.2 Integration with APEX

    Hi,
    I bought Anychart 5.1.2 with Maps. Now, they have pointed me to a webpage where I can down load a Zip file that contains a bunch of png, swf, xml files. How do I integrate this with APEX? What are the steps..
    -Vatsa

    Hello,
    I assume you're talking about this page -
    http://anychart.apex-evangelists.com
    Take a look through those steps listed on that page, if you're still having problems, drop us a mail to [email protected] and we will help you out.
    Thanks,
    John.
    Blog: http://jes.blogs.shellprompt.net
    Work: http://www.apex-evangelists.com
    Author of Pro Application Express: http://tinyurl.com/3gu7cd
    REWARDS: Please remember to mark helpful or correct posts on the forum, not just for my answers but for everyone!

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

  • 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

  • Stacked Bar Chart with Multiple Series Sort Question

    Hi,
    Apex version 4.1.1
    I have a stacked bar chart with three separate series, one showing customer effort, another showing project effort and the third showing other effort, summarized by calendar week. The x-axis of the chart is the calendar "week of" date, and the y-axis has a bar for each of the three series. Not every type of effort occurs every week.
    When AnyChart renders the chart, the order of entries on the x-axis seems to be dependent both on which series are present in a given week as well as the "week of" date. Weeks with all three series sort in order by calendar date, followed by weeks where just the 2nd & 3rd series are present, followed by weeks where just the 3rd series is present. See this [url http://tinypic.com/r/b9zdt/6] picture of the chart  noting the "week of" dates. Note that the months go Sep-Oct-Nov-Aug-Oct.
    Is there a way to force AnyChart to sort the x-axis in chronological order regardless of whether there is data for all three series for a given week? I have looked through the AnyChart XML reference but cannot find a way to do this.
    Incidentally, I can solve the sorting problem by combining all three series into a single query:
    select
      null as link,
      week_of as label,
      sum(customer_effort) as "Customer Effort",
      sum(project_effort) as "Project Effort",
      sum(other_effort) as "Training, Admin and Other Effort"
    from ...But if I do this, I cannot figure out how to have each bar on a given week link to a different detail page, e.g., if I click on a bar representing customer effort I want to link to one page, but if I click on a bar representing project effort, I want to link to a different page. I have had a look at the [url http://apex.oracle.com/pls/apex/f?p=36648:59:1570983160946101::NO:::] chart examples  posted on apex.oracle.com, but cannot figure out how to apply to multiple series in a single query.
    Thanks,
    Mike

    Thanks, Jeff. I did try this but for whatever reason it doesn't make a difference. I think it is because if there's no data for a given series for a certain week, there is no entry in the data set that is sent to AnyChart.
    I was able to get around the issue by "filling in" the missing weeks from each data series. To generate the list of "Week Of" dates for a given date range, I used this code:
    select
         trunc (each_day) as week_of,
         0 as effort
    from (
         select
              (to_date(:p920_start_date,:app_date_format) + 2 - to_char(to_date(:p920_start_date,:app_date_format),'D') - 1) + level each_day
         from dual
         connect by level <= to_date(:p920_end_date,:app_date_format) - to_date(:p920_start_date,:app_date_format) + 1
    where
         to_char (each_day, 'D') = '2'This creates an effort entry of 0 for each week within the date range; I use the Monday date of a week as the "Week Of" date. I then union this with my actual data and summarize by week and viola, I get the weeks in order. This also has the benefit of showing a week for which there are no entries in any of the three series.
    Thanks for taking a look at this.
    Mike

Maybe you are looking for

  • Help with design of this home network setup

    Hello all My friend's home has internet through Comcast and their modem is an RCA DHG535-2. This modem is currently functional in their office within the home. Their problem is the wireless signal is very weak in their basement. They have purchased a

  • Any BAPI or FM to update Goods Issue tables In SD

    Hi All, Is there any function module or BAPI which can update the tables LIKP LIPS. I am trying update the some fields in this table which are coming from legacy system. Please assist waiting for your reply Badari

  • How to embed placeholder from report layout editor in a link

    I have created a report selecting the custom report layout option. Rather than using a link on the column, I would like to add different links in the footer section in the Report Layout Editor. My problem is trying to create a link and pass a value f

  • BUG in visual studio 13

    shit visual Studio destroyed my hole c Project  it was so big and nearly everything got deleted you shit loads better repeair your shit , i couldnt even submit a bug Report so i write this here ,,, i can tell you Change your IDE immediatly , i wont t

  • Error while upgrading filesystem 0.8-9 - 2007.08-1

    Ran pacman -Syu today (as I do every day) and while it was upgrading the filesystem package I got the following output: warning: extracting /etc/passwd as /etc/passwd.pacnew                            warning: extracting /etc/fstab as /etc/fstab.pacn