Duplicate Dial Chart Values

Hey Everyone,
This must be easy to solve, but my searches have yet to reveal the answer. I just created a simple chart based on the average value from a table. Here is my source query:
SELECT AVG(TIME_VAL) VALUE, 5 MAX, MIN(TIME_VAL) LOW, MAX(TIME_VAL) HIGH FROM PROJECT_SURVEYS
However, on the output chart I get values of 0,0,1,1,2,2,3,3,4,4,5,5. Why??
Mike

Hey,
Not too sure what you mean here. The label is derived from the value (AVG(TIME_VAL)). I tried removing the labels, but I get exactly that - no labels.
I just experimented with decimal places and it seems to work 'properly' now. I changed it to 2 decimal places and now my values show as:
0.00
0.50
1.00
1.50
Shouldn't this have worked with 1 decimal place, which I tried, because it would be nice to only show the one?? Also, how could I go about removing the labels for these intermediate (0.50) ticks?? Any thoughts are appreciated,
I just tried a 'tick spacing' of 1. This is nice for limiting the labels, intervals, but it would still be nice to be able to use 'intermediate' and unlabelled ticks. What I have now will suffice however,
Mike
Message was edited by:
given2fly

Similar Messages

  • Synchronize item with dial chart

    Hi,
    i have a dial chart that shows the avg query duration.
    i have a display text item that is selecting from the same table but give more info such as min query time and max query time.
    my dial chart is refreshing every 10 minutes
    how can i make the display text item refresh as well in order to keep the two synchronized ?
    10x
    Zvika

    You will need a bit of AJAX to achieve your objective.
    Define a JS function like
    <script>
    function update_item(pNow) {
      setTimeout("update_item(true)",15000);    // 15000 is time in ms - should match your charts refresh time
      if (pNow){
         var get = new htmldb_Get($x('P16_X'),$x('pFlowId').value,'APPLICATION_PROCESS=UPDATE_INFO',0);     // P16_X is the page-item that needs refreshing ,UPDATE_INFO is an Application Process
    gReturn = get.get();
    </script>In the Chart Region's ' Region Footer' add
    <script>
    addLoadEvent(update_item(false));
    </script>Define an On-Demand 'Application Process' named 'UPDATE_INFO'. For the process text do something like
    declare
    newvalues varchar(200);
    begin
       newvalues := 'Whatever my newvales for query time etc are ....';
       htp.prn(newvalues);
    end;And that should be it
    Varad

  • Dial chart

    Hello everybody...
    I want to create a percent dial chart. This chart should show a 'performance', expressed by a percentage. This value is obtained by the ratio between two values:
    1-the first value (i'll call it "VALUE") derives from a sql query
    2-the second value, a target value (i'll call it "TARGET") has a default value that could be changed by the user, and it's contained in a text item
    the dial chart should show the ratio: VALUE/TARGET.
    is it possible? what are the single steps to obtain this result?
    thank you very much

    gavaking,
    I have not used the percent dial chart but did a quick trial on what is required and what you are asking to do seems doable.
    You have asked how it would be done, the process would require you to setup a variable for example P1_User_Target which the user would enter prior to the computation of the query. The other "VALUE" you could recall from the page as P2_VALUE and would be easily run via the LoV function in APEX.
    Once both of these are established you would then build the query for the percent Dial and rename each appropriately.
    Again I have not done specifically what you are requesting here but it does seem doable.
    If you need more help writing the query let me know, or perhaps someone more exprienced then myself will pipe in with a bit more insight.
    Randy

  • Apex 4 - strange problem with dial chart

    I may be misunderstanding the way dial charts worked but here goes.
    I created a dial chart (not %) just a regular dial chart.
    my query was : select count(*), 200 from mytable; -- just counting number of rows (always less than 200)
    So when the query return 40, my chart shows 40. But when the query is returning 0, my dial won't go below 2.
    So I tried modifying query to select count(*), 200, 0, 200 from dual; Same problem.
    And here it gets weird. I went into the query section of apex and changed my query (note, I did not create new dial, just moded old one) to
    select 0, 100 from dual;
    I still get back a value of 1 on the dial.
    Anybody seen anything like this? It's like some weird uber cache somewhere or something. I can't figure it out.
    Addition :
    So we did the following :
    select 0, 20 from dual; -- shows 0
    select 0, 100 from dual; -- show 1
    select 0, 200 from dual; -- show 2
    select 0, 500 from dual; -- show 5
    Is this a bug?
    Edited by: user3932435 on Aug 11, 2010 7:28 PM

    Hi,
    Thanks for bringing this issue to my attention. It appears that you have hit some behaviour that's reproducible in our Flash 3 charts as well as our Flash 5 charts with APEX 4.0. I believe the reason that it wasn't apparent before now, with the Flash 3 charts, is because there was no option to display a value on the gauge pointer with the earlier charts. With APEX 4.0, we've extended the Chart Attributes to allow for the display of the value. Obviously in your case, the incorrect value is being displayed and will be misleading to your users. I appreciate this is not ideal, but if possible I would suggest updating your attributes to switch off the display of the Value on the gauge. I will address this in a future release, as with the exposure of the "Value" attribute with Flash 5 charts, we don't want to be displaying incorrect information. Thanks again for bringing this to our attention, and hopefully by switching off the Value attribute, you can still proceed with your use of the gauge chart.
    Regards,
    Hilary

  • Dial chart dynamic color range

    Hi
    I am trying to dynamically change range of the scalebar color.
    I see that I can give Apex a low and high value exactly for this reason.
        Invalid Dial chart query, use the following syntax:
         SELECT VALUE, MAX [, LOW, HIGH] VALUE FROM ...
        VALUE      Numeric column that defines dial value.
        MAX      Numeric column that defines Maximum dial value.
        LOW (optional)      Numeric column that defines the low value of a range to display on the dial. If this value is defined, a HIGH value is required.
        HIGH (optional)      Numeric column that defines the high value of a range to display on the dial. If this value is defined, a LOW value is required.
        This query should return one row.I would hope for Apex to use those value in the #SCALE_DATA# in the Chart XML.
    <axis start_angle="90" sweep_angle="180" >
    #SCALE_DATA#
            <labels enabled="true" align="Inside" text_align="Near" rotation="0" >
                  <format><![CDATA[{%Value}{numDecimals:0,decimalSeparator:\,,thousandsSeparator: }%]]></format>
              <font family="Tahoma" size="10" color="#000000" />
            </labels>
    </axis>But it does not seems to work.
    I only need to add those lines
    <scale_bar enabled="false" />
    <color_ranges>
       <color_range start="0" end="25" color="Red" />
       <color_range start="25" end="90" color="Green" />
       <color_range start="90" end="100" color="Red" />
    </color_ranges>25 being the #LOW# value and 90 the #HIGH# value.
    I do not want to use custom XML everywhere.
    ANy iadea if I can modify the default XML or modify the behavior of the #SCALE_DATA# ?
    Thanks a lot
    Sebastien

    Hello,
    What do you mean by maximum value?
    The 10 in the query is to figure out values other than the dial itself there is not a graphical component that represents that number.
    The high line usually is used historical maximum value. Do you want to change the color of the dial when it hits 10?
    Carl

  • Questions about traffic light Dial chart.

    Greetings,
    I want to create a dial chart which will use the traffic light colors to display normal/warning/dangerous. However, I have not found anything about how to do it either at the documentation or threads in the forum. Could anybody who has already done similar things shed some lights here?
    Thanks in advance.

    Hello,
    Yes you can do all of that using the custom css section.
    These are the css attributes for the dial charts
    text.tic{stroke:none;fill:#000000;font-size:12px;}
    line.tic{stroke:#000000;stroke-width:1px;fill:none;}
    #dial{stroke:#336699;stroke-width:2px;fill:#336699;fill-opacity:.5;}
    #dial.alert{fill:#FF0000;fill-opacity:.5;}
    #dialbackground{stroke:#000000;stroke-width:none;fill:none;filter:url(#MyFilter);}
    #dialcenter{stroke:none;fill:#111111;filter:url(#MyFilter);}
    #dialbackground-border{stroke:#DDDDDD;stroke-width:2px;fill:none;filter:url(#MyFilter);}#low{stroke-width:3;stroke:#336699;}
    #high{stroke-width:3;stroke:#FF0000;}
    And here is an example page where you can try different css combinations, http://htmldb.oracle.com/pls/otn/f?p=11933:85,
    You can use an item value to populate the css section so just use some plsql to create the right css depending on your values.
    Carl

  • APEX Dial Chart

    Hi, I am using following sql as a source for my DIAL CHART... Chart is working fine for larger values (in millions) but for smaller values (around 1.4 million) it's showing repeated numbers on the dial grid (such as $0M, $0M... $1M, $1.M)...
    select SUM(a.YTD/1000000) value,
    1.68 as MAX_VALUE
    from
    (select sum(YTD) YTD from "BL"."MV_BILLING" where MKT_SEGMENT = 'ABC' and year = 2010) a
    Over the grid, I want to show meaning full values such as for records close to $1.5 million it should show something like this .1 M, .2M, .3M and so on... Please advice
    Thanks

    Hi,
    This might help with dial chart syntax
    http://download.oracle.com/docs/cd/E14373_01/appdev.32/e11838/app_comp.htm#sthref1111
    I think you need have dynamical MAX VALUE also
    Br,Jari

  • Show tooltip on click of chart values in line chart

    I have given a task, where i need to show tool tip on click of the chart values. That tool tip should also have a close button. Tool tip should be closed only when a user clicks the close buttton or when the user clicks on other chart values.
    Thanks in advance...

    I have given a task, where i need to show tool tip on click of the chart values. That tool tip should also have a close button. Tool tip should be closed only when a user clicks the close buttton or when the user clicks on other chart values.
    Thanks in advance...

  • Get chart Values

    Hi experts,
    I want to retrieve the date value from this graph and I've been wondering is there a way to retrieve a chart axis value without using the model?
    I tried to do this:
    var model = sap.ui.getCore().getModel("dataQuery"); // dataQuery is my model
                   var indexFromChart = oControlEvent.getParameter("data")[0].data[0].ctx.path.dii_a1; // that retrieve the id
                   var monthValue  = model.getProperty("/DUMP" +indexFromChart+); // Dump is the path in my model that gives me the months value
    but as when I do model.getProperty("/) the result is like this
    DUMP(dateStep='02.2014',numberOfAlerts='3728',sid=''): Object
    I can't retrieve the values form the chart
    the result is always: undifined
    Any help would be greatly appreciated!
    Regards,
    Jean Max

    Hi Jean Max,
    you can refer discussion in thread How to get value of selected part in sap.viz.ui5.pie chart
    in that example, it is shown how to read chart value of pie chart. with few modification, you will be able to get the result for your requirement.
    Regards,
    Chandra

  • Chart value formatting

    Hi all,
    I want to format the chart value. There is a chart which is bar-line chart. From chart properties, when i check the "show values" option the value of both bar and line is shown.
    The chart contain two bars and three lines. Among three lines, two lines show negative value. While showing these two lines the value of these lines  are shown just on markers of the line.
    Some times these negative values are not clear as these are on markers.
    Is there any way to show the value of the line below the markers of the line of a bar-line chart.
    thanks in advance

    hi,
    As there is no option/setting which will control the position of display of values w.r.t data marker,
    One way to highlight the values when overlappng with data markers is to use background color.
    Also, border can be used.
    Data -> values -> Background Color.
    Regards,
    Vamsee

  • Change Chart Values using Datepicker

    Hi Experts,
    How to change the chart values using Date Picker.
    It is possible to do in apex.
    Regards,
    Upendran

    This is the Application Express Listener Forum.
    Please post in Application Express forum.

  • Pie Chart Value Unit

    Hello,
    I am using APEX4,
    i want to add à personnalised unit or a specefic symbol like '%' for each value of the chart.
    for example i tried to use this syntax :
    select null link, libelle , value||'%' from table
    but i have error
    any idea please,
    Thanx

    Hi Ouadah,
    I would recommend that you edit your chart, and review the options available to you on the Chart Attributes page. You can declaratively change the appearance of your chart, based upon the settings on that page. For example, if you wish to a prefix character of € to currency values, simply enter the character in the Values: Prefix text field. Similarly, to apply a postfix to your chart values, update the Values Postfix text field to hold the percentage characters, %. You do not need to modify the chart query in order to apply such changes to your chart.
    Regards,
    Hilary

  • Free Form Template and Combining Chart Values during Runtim

    Hi Guys,
    Need your expertise on this.  We received some unreasonable request for the following:
    1. Free Form Template DURING Runtime
    - moving charts from one place to another by dragging them from one place to another during runtime
    2. Combining of Chart values during Runtime
    -to be able to mash-up 2 different charts during runtime.  For example, dragging a chart to another chart
    would result to a combined-value of chart.  For instance, you have a Sales Chart and a Production Chart,
    if and when Sales Chart is dragged and placed on top of Production Chart then it would mash-up the values
    and will produce only one chart.
    Is this even possible?
    Hope you guys can help.
    Kind Regards and Many Thanks,
    Mark

    Hi Mark
    1. Free form template is not possible with current version of Dashboard Designer.  You may use the option of Dynamic Visibility to simulate this.  But this might not serve your requirement 100 %.
    2. Your requirement of mixing up chart just by dragging and droping on another is coming under Designing part.  For designing we need software, in my point of view.  Xcelsius is a Tool to generate required output in various formats.  Here we need to finalise the output such as chart type/ data to be displayed/ format to be displayed, etc and while viewing we may play with data but not with objects other than dynamic visibility.
    Hope this clarifies.
    With best wishes
    BaaRaa.

  • Issue with chart values!

    Hi to all,
    I hope if any one can help me out with this issue related to pie chart value information. To start I need to let you know what I have in my report so you will have a clear idea on what I'm trying to view in my report.
    I'm running:
    Opportunity-Product History report
    Fields:
    Business Area (4 different Business Areas (example: east, west north, south))
    Revenue
    The issue I’m having related to the revenue values of each Business Areas.
    For example I can see the 4 different Business Areas on my pie chart, but the value (revenue) of all Opportunities for a specific Business Area “east” not equal to the total Revenue for “east” in my table below. It will show only the value $ for one of the opportunity in this Business Area “east”. But if I drill into Business Area “east” it will show me all the opportunities with all right values $$
    My quest is how can I show the total amount of revenue in my chart with out drilling into each Business Area
    Thanks,

    Hi bvuHH,
    According to your description, you checked "Show Data Labels" to show labels in the chart, if the data is too small, the label will be displayed outside the bar, the color of label and background of the chart is the same, and labels become unreadable.
    According to my test, if the value of data is too small, the label will be displayed outside the bar area by design. As a workaround, we can change the color of label by following steps:
    Right-click label and open Series Label Properties dialog box.
    Click Font in left pane, click drop-down arrow next to Color and select a color, then click OK.
    Besides, we can set background color of label by following steps:
    Right-click label and open Series Label Properties dialog box.
    Click Fill in left pane, click drop-down arrow next to Color, then select a color and click OK.
    In addition, we can also change color of chart area by following steps:
    Right-click chart area and open Chart Area Properties dialog box.
    Click Fill in left pane, in Pick color section, click drop-down arrow next to Color, then select a color and click OK.
    If you have any more questions, please feel free to ask.
    Thanks,
    Wendy Fu

  • Font size in  Chart Value Axis & Category Axis In VC 7.0

    in visual composer  i want  the font size should be big size in  chart value axix and category axis ?

    i think the only way to do that right now would be to not input any text for a Table or chart title , or maybe put in a blank space for it
    and then create a transparent form , in that transparent form add the HTML text, have it formatted to the size and color you want and then in the layout tab position it in such a way which it looks like the title of that chart
    i have this implemented in a few of my dashboards  where i require dynamic text it works well

Maybe you are looking for

  • How can I sync 2 iPhones to 1 user account on an iMac via iCloud?

    My wife and I share one user account on our iMac. In the past when have had seperate user accounts but we usually would just use whichever one was logged on and then get frustrated when we had to switch over to retieve a certian file. Now that we bot

  • Visual Composer 6.0 installation

    Hi, We are using EP 6 SP16. I have all the below dc in my System info i.e. http://portal:port/monitoring/SystemInfo com.sap.visualcomposer  sap.com  com.sap.visualcomposer.BIKit sap.com  com.sap.visualcomposer.BIKitQV sap.com  com.sap.visualcomposer.

  • Mail will not open on my Macbook, 10.9.3

    Three days ago Mail just stopped opening and I get the following prompt box when I try to open it. "The last time you opened Mail, it unexpectedly quit while reopening windows. Do you want to try to reopen its windows again?  If you choose not to reo

  • Time Capsule doing unfeasible backups!

    My TC seems to be doing some unbelievable backups. Problem is that whilst it thinks it's backing up the response time of my machine is dreadful! This morning I noticed it was doing a 5Gb+ backup. An hour later it's doing a 1.28Gb backup. It doesn't m

  • E90 doesn't work as a modem on vista64 ...

    Hello, I am now working for more than 2 days getting the E90 working as a usb or bluetooth modem on my notebook. OS is Vista64 SP1. I read all the threads on every bbs I could find on the web refering to this subject but no success so far. I re-insta