Seconds in charts

Hi,
How to show seconds level records in chart in obiee line chart for one day record
i.e. if i enter date 02/02/2012 from prompt it should show the records on seconds level in chart
thanks

Hi,
Can you try to use in your chart view -->column -->fxn
Syntax:
Cast(Cast(CURRENT_DATE AS CHAR) AS TIMESTAMP)
example Try this
Cast(Cast("Time"."Calendar Date" AS CHAR) AS TIMESTAMP)
Note: CURRENT_DATE change to your date columns
in the line chart view -->set data label display always.
Thanks
Deva
Edited by: Devarasu on Jun 13, 2012 3:54 PM

Similar Messages

  • 5 seconds sweep chart

    Hello,
    I have a chart displaying a real-time sine waveform with a sample frequency of 300Hz and amplitude 5V.
    On the time axis (X) I would like to display 5 seconds of data with the Sweep Chart Mode, how can I do that?
    I want the red line of the sweep chart mode to move from the left side to the right side of the chart in exactly 5 seconds, and then start again from the left side.
    Solved!
    Go to Solution.

    I was doing the same thing but nothing was changing 
    then I just close everything and restart it again and it worked.
    Thank you!

  • How to extract data from Chart History?

    Dear all, I have read a lot of posts, but still don't understand how to extract data from Chart history.
    Suppose you acquired 1024 points of data every time, then use "build array" to build an array, then send to intensity chart to show, then save the history into a .txt file,  but how to extact data from the file?
    How Labview store the data in the 2D history buffer?
    Anybody has any examples?

    The simplest would be to save the 2D array as a spreadsheet file, the read it back the same way.
    Maybe the attached simple example can give you some ideas (LabVIEW 7.1). Just run it. At any time, press "write to file". At any later time, you can read the save data into the second history chart.
    If you are worried about performance, it might be better to use binary files, but it will be a little more complicated. See how far you get.
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    IntensityChartHistorySave.vi ‏79 KB

  • Mapping Org Chart to a specific role

    Hi All,
    I’m in the process in implementing NAKIZA V4.1 in my company but I’m facing difficulty in one of the requirements, I have two Org Charts configured, first one (main Org Chart) is displayed for all users which it’s rooted by User ID, it’s working fine.
    My problem is with the other Org Chart (Second Org Chart) which is limited to a group of users(HR User) & it’s rooted to Org Chart root, I checked this Org Chart in the secured items & make sure it’s not displayed for all, then went & mapped it to the role related to those group of users(HR), but when I check the user access it’s still no appearing.
    I already remove the user name and password from connection string, We are using Single sign-on with logon tickets (Portal integration).
    Example:
    There are two Org Chart,
    One called Org unit Hierarchy Organization Structure ( Root ) and I need it to display it to the HR user by mapping it to HR role, in the authorization Tree I make it as Green color and  mapped it to the HR role.
    Second one called  Org. unit  Company Structure  (User Record ) and I need it to display to the Manager user by mapping it to Manager role, in the authorization Tree I make it as Red color and  mapped it to the Manager role. (working fine).
    When I log in as Manager I can see the Company Structure org chart, however when I log in as HR it does not shows me the Organization Structure,  it shows me only  Company Structure org chart.
    I’m not sure where to check more, any directions are appreciated.
    Regard.

    Hi Rami,
    Kindly provide cds.log.Based on my experience this is related on new session and to many browser open the same time.
    Please inform technical portal to change the IView configuration from http://nakisaportal/OrgChart/default.jsp to http://nakisaportal/OrgChart/logout.jsp .
    Regards
    Mohamad Firhad Samuri

  • Apex flash Chart not working after upgrade to #5.1.3

    Hi,
    I am using oracle apex 4.0,database11g and i upgraded the apex flash chart to #5.1.3, also i am using the partial page refresh (html_PPR_Report_Page) in every 5 sec time interval.
    However after about 5 seconds the charts dissapear and never come back unless you manually refresh the browser.
    Could y please suggest.
    Regards,
    Saroj

    Like junkyardheart, mine cleared up.  After talking with tech support for 2 to 3 hours trying all kinds of things they opened a ticket to have a technician checkout the local cell tower.  The next day tech support called me and I told them it was worse.  Then they had started looking at my past reports on "Mark the Spot" app and open several more tickets and had a crew checkout the area.
    I received a call two days later and they had two bad cell sites.  With the next day being Saturday they had the whole weekend scheduled as an outage to fix the problems.  By noon on Saturday everything was great.
    I even checked out my download speed using a few speed apps and I was pulling 2-3 Mbps down and pushing 1+ Mbps up.
    I think the update exposed a serious problem that had existed for a while.

  • Change color in chart series (Chart Controls)?

    Does anyone know if it's possible to change the color within a series in Microsoft Chart Controls?  My data is X = test time and Y = response time using a column graph.  Currently when the test to collect response time fails it does not
    record a numerical value and when graphed it appears as though the response time was minimal.  I want to make it stand out when a failure occurs, for example to draw a large column and change the color to red (other values are in blue).
    I don't have much experience using Chart Controls yet.  I know you can use an alternate color with a different series of data but it doesn't appear you can change it from within. 
    This is my chart series (when a test fails, the response matches "" and not $NULL):
    [void]$chart1.Series.Add("ResponseTime")
    $chart1.Series["ResponseTime"].ChartType = "Line"
    $chart1.Series["ResponseTime"].BorderWidth  = 1
    $chart1.Series["ResponseTime"].IsVisibleInLegend = $true
    $chart1.Series["ResponseTime"].chartarea = "ChartArea1"
    $chart1.Series["ResponseTime"].color = "#0404B4"
    $DATA | ForEach-Object {
    If ($_.RESPONSE_MS -eq "") {
    $chart1.Series["ResponseTime"].Points.addxy("FAIL",9999)
    Else {
    $chart1.Series["ResponseTime"].Points.addxy( $_.TIME.Remove(5) , ($_.RESPONSE_MS)) }
    I tried changing the color within the if/else but the first .color value it picks up will be used throughout. 

    Hi Tickermcse76,
    To create a new line chart, please refer to this script:
    function New-Chart
    param ([int]$width,[int]$height,[int]$left,[int]$top,$chartTitle)
    # create chart object
    $global:Chart = New-object System.Windows.Forms.DataVisualization.Charting.Chart
    $global:Chart.Width = $width
    $global:Chart.Height = $height
    $global:Chart.Left = $left
    $global:Chart.Top = $top
    # create a chartarea to draw on and add to chart
    $chartArea = New-Object System.Windows.Forms.DataVisualization.Charting.ChartArea
    $global:chart.ChartAreas.Add($chartArea)
    [void]$global:Chart.Titles.Add($chartTitle)
    # change chart area colour
    $global:Chart.BackColor = [System.Drawing.Color]::Transparent
    } #New-Chart
    New-Chart -width $width -height $height -left $left -top $top -chartTile $chartTitle
    [void]$global:Chart.Series.Add("Data")
    # $global:Chart.Series["Data"].Points.AddXY($(get-date), $($ht.Values))
    $global:Chart.Series["Data"].Points.DataBindXY($ht.Keys,$ht.Values)
    #$global:Chart.Series["Data"].XValueType = [System.Windows.Forms.DataVisualization.Charting.ChartValueType]::Time
    #$global:Chart.chartAreas[0].AxisX.LabelStyle.Format = "hh:mm:ss"
    #$global:Chart.chartAreas[0].AxisX.LabelStyle.Interval = 1
    #$global:Chart.chartAreas[0].AxisX.LabelStyle.IntervalType = [System.Windows.Forms.DataVisualization.Charting.DateTimeIntervalType]::Seconds
    $global:Chart.Series["Data"].ChartType = [System.Windows.Forms.DataVisualization.Charting.SeriesChartType]::Line
    #$global:chart.Series["Data"].IsValueShownAsLabel = $false
    Reference from:
    http://poshcode.org/1205
    To change the chart color, please refer to this script:
    Charting with PowerShell
    I hope this helps.

  • Chart Web Part to not plot zeros on a line graph

    Hi all,
    Is it possible to not plot zeros on a line graph?
    I have a line chart with days of the current month along the x-axis and a value on the y-axis. I have a series representing a forecast as a line that will show what the values along for the whole month should be and a second
    line chart series representing the actual. This tells the reader how the actual is tracking against the forecast. The data is based on an excel table.
    Currently when the latest value is set the line skews back to 0. I don't want this shown, I just want it left blank. On excel you can change the zeros to na() and the line graph will not plot, however, if I leave them as na() in the source data, the whole
    column wont be imported in the chart wizard.
    Any ideas?
    Thanks
    Andy

    It's true -- the RangeBar chart type only has two field options (X and Y) while the RangeColumn correctly has an addtional Y field. The RangeBar chart should obviously have two X fields if it's supposed to plot a range, as the name and example image indicate.
    Neither this thread or the one linked has led to an answer. Can this be fixed?

  • Pie chart from Largest slice of another pie chart.

    Greetings!
    I'm trying to come up with a method which will allow me to create a pie chart of the subgroups from the largest slice of an existing pie chart. The "parent" pie chart will change depending upon the parameters given in the report.
    declare @dataTable table (category varchar(10), task varchar(10), timeSeconds int)
    insert into @dataTable (category, task, timeSeconds)
    values
    ('Alpha','Scrub',100),
    ('Alpha','Sweep',100),
    ('Alpha','Polish',100),
    ('Bravo','Wash',200),
    ('Bravo','Dry',200),
    ('Bravo','Fold',200),
    ('Charlie','Paint',300),
    ('Charlie','Sand',300),
    ('Charlie','Spackle',300)
    In this example, when a pie chart is produced, Charlie would have the largest slice. I then want to produce a pie chart showing only the tasks contained within the Charlie category, but which has the flexibility to render if the Alpha or Bravo groups are
    the largest slice next time.
    Thanks

    For anyone else attempting the same thing: I wound up bringing in a reference to the largest slice using a subquery in the initial query, and using that column as a filter on the second pie chart.
    I was hoping for a solution from within SSRS itself, but settled on that. I'll leave the question open in the hope someone knows how to achieve the same result from within SSRS.

  • Regarding Bar Chart

    Hi ,
        This is prasad new to sap xmii.In Xmii i want to display two bar charts.
    First bar chart should display by selecting the dropdown.It works fine by displaying the chart.And the next bar chart should display on clicking the Units of first bar chart.
    But it is not happening like that.To display the second one first we have to click the legend on the right side of the chart and then clicking on the chart displays the second chart.
    I would like to display the second bar chart by clicking the first bar chart  unit directly without clicking on the legend.
    Can any one give the necessary direction on this will be helpful for me
    Thanks,
    Prasad.

    In situations like this, since the ChartSelectionEvent in the chart area is visually independent of the SelectionEvent in the legend, I prefer to have both events declared.
    In the ChartSelectionEvent function you can use the .getLastSelectedTag() method to determine which associated legend 'pen' the user selected by clicking on the bar.  You can then use this number to call the .setSelectedPen(iPen); method, which will do two things:  highlight the legend item for the bar they've selected and also fire the SelectionEvent for the iChart.
    By doing this you have script access to everything you need about the particular bar they've clicked as well as the pen related information.  It also provides the visual correlation so that the user doesn't get confused by clicking on a bar in the chart for drill-down but still seeing the legend indexed to a different pen.
    fun ction BarChart_ChartSelected() {
         var myChart = document.BarChart.getChartObject();
         var selPen = parseInt(myChart.getLastSelectedTag());
         if (selPen > 0) {
              myChart.setSelectedPen(selPen);
    Regards,
    Jeremy

  • Charts - Display Top Percent and Legend Layout Questions

    I have two pie charts with problems. In one, I've set the Options Legend Layout to Both, Top Percent to 85, and the legend displays the top 85 percent with a count for each group, but the total of the count column is still the grand total, not the total of the 85 percent.
    In the second pie chart, I have the same settings, Top Percentage and Options Legend Layout Both, but the count displays as dollar values, eventhough the field is a date field.
    Does anyone know how to correct these problems?
    Thanks!
    Robin

    hi Robin,
    you've got 2 options:
    a) you can use the cross-tab method that i mentioned before...a top N in the cross tab will show a percentage that is based on the whole record set as opposed to the N values...this is different than the chart legend percentage
    b) if you are willing to show the percentage that is based on the whole record set in the chart labels instead, you can  do the following...
    if you have an On Change Of value of "country" and the summary is "sales", then create a new formula called "chart title" that has syntax similar to
    {Customer.Country} +  chr(10) + totext(PercentOfSum ({Customer.Last Year's Sales}, {Customer.Country}))
    now change the chart On Change Of to your new formula. the percentage based on the whole record set will be shown in the chart labels.
    cheers,
    jamie
    Edited by: Jamie Wiseman on Nov 25, 2009 1:34 PM
    Edited by: Jamie Wiseman on Nov 25, 2009 1:35 PM

  • Wad reqt - Combining two individual charts

    Hello Experts,
             I have a requirement in WAD where in I have two stacked column charts as shwon below.
             These two column charts are using two different queries. First column chart shows keyfigures related to LT.
             Second column chart shows keyfigures related to LF.
             Requirement now is to combine these two charts as single stacked column chart.
             The new single column chart shoul show the bars for LT and LF for the given month side by side.
             Please help me to achieve the same.
             Thanks in advance.
    Regards,
    Annu    

    Hello,
            @Yasemin : I can create a query as you suggested and use the same for creating the chart.
            But the problem is to create the chart as desired.
            I need the stacked column with two bars for each month.
            First bar must should show first three key figures.
            Second bar must show the keyfigures from 4 to 6.
            Your suggestions are valuable to me.
    Regards,
    Annu

  • AnyGantt APEX chart wrong Time Format

    I'm trying to create an anyGantt chart within APEX but the XML keeps misconverting the time section of date. Thus, where an activity should start on 05-11-2012 15:16:17 (DD-MM-YYYY HH24:MI:SS), it actually starts on 05-11-2012 12:11:00. It seems to take the Year as the Hour and the Month as Minutes, but assigns nothing to the minutes. The Year is also random, it's either 0, 1, 12, or 13.
    So say I have this Record:
    ID___________NAME______________DATE_START_____________________DATE_END_____________________________DRIVERID
    2____________Driving_____________21-9-2012 12:04:40_______________22-9-2012 13:05:50______________________228And complete this statement:
    SELECT null link,
    t.driverid resource_id,
    TRIM(r.lastname) || ', ' || r.firstname resource_name,
    NULL parent_id,
    t.date_start actual_start,
    t.date_end actual_end
    FROM "user"."gantt" t, "user"."drivers" r
    WHERE r.driverid = t.driveridThe Gantt chart translates this activity to:
    RESOURCE_NAME______RESOURCE_ID_______________ACTUAL_START______________ACTUAL_END
    Sleeman,_Bob_________228________________________21-9-2012 *01:09:00*___________22-9-2012 *01:09:00*Thus giving me a wrong gantt chart, as these records would overlap, and start at the wrong time.
    The XML settings are as following:
    <settings>
    ________<title_enabled="False"_/>
    <outer_margin_left="0"_top="0"_right="0"_bottom="0"_/>
    ____<background>
    __________<fill_type="Solid"_color="0xFFFFFF"_/>
    __________<border_enabled="false"/>
    __________<corners_type="Square"/>
    ____</background>
    ____<navigation_enabled="true"_/>
    ____<locale>
    _______<date_time_format_week_starts_from_monday="True">
    _________<months>
    ___________<names>Januari,Februari,Maart,April,Mei,Juni,Juli,Augustus,September,Oktober,November,December</names>
    ___________<short_names>Jan,Feb,Mar,Apr,Mei,Jun,Jul,Aug,Sep,Okt,Nov,Dec</short_names>
    _________</months>
    _________<week_days>
    ___________<names>Zondag,Maandag,Dinsdag,Woensdag,Donderdag,Vrijdag,Zaterdag</names>
    ___________<short_names>Sun,Mon,Tue,Wed,Thu,Fri,Sat</short_names>
    _________</week_days>_
    _______<format>
    __________<full><![CDATA[%yyyy.%MM.%dd.%HH.%mm.%ss]]></full>
    __________<date><![CDATA[%yyyy.%MM.%dd]]></date>
    __________<time><![CDATA[%HH.%mm.%ss]]></time>
    ________</format>
    _____</date_time_format>
    ____</locale>
    _</settings>I know the default format for the 24-hour notation in Oracle is "HH24" and the minute notation is "mi" and not "mm", but the notation in AnyGantt says minutes are %mm (lowercase) and months are %MM. The notation in anyGantt is different from the Oracle-notation. Who can explain this problem, and better, solve it?

    Hi Rik,
    Thanks for providing the login credentials to your example. I hope you don't mind but I've created a second Gantt chart on the page, to illustrate how to display the time component for the tasks on the chart.
    In order to represent the time component on your charts, you need to use TIMESTAMP columns in your chart query. If you run your existing query from the chart in SQL Workshop, you'll see that the results only return the date component, and do not include the time. In order to retrieve the time component, you would need to use the TO_CHAR function on your DATE columns, which you have done for your report on the same page. Given that the chart query syntax must either reference DATE or TIMESTAMP columns, you therefore need to use the TO_TIMESTAMP function in this situation to ensure that you're capturing the date and time. I've got an example on my sample application, here: http://apex.oracle.com/pls/apex/f?p=36648:83.
    So to get the chart displaying the correct information, I did the following:
    1) Updated the chart series query to use TO_TIMESTAMP on your DATE columns
    2) Updated the Application Timestamp Format via the Edit Application Properties page, changing it from DS to DD-MON-YYYY HH:MIPM, otherwise your timestamp values would still not display the time component.
    Let me know if you've any further questions. I hope this helps.
    Regards,
    Hilary

  • Area chart help/advice needed

    Hello fellow fexers,
    I am trying to create an area chart that has two series.
    The horizontal axis is a range from -12 to 12
    The first series charts data from -12 to 0 while the second
    series charts data from 0 to 12.
    What i am trying to do is have the first series fill the
    space above the line while the second fills the space below.
    Currently both series fill above.
    Does anyone know how to accomplish this? Is it
    possible?

    answer:
    the direction of the fill in an area chart is dictated by the
    axis range.
    If you have a range that causes the fill to be above the line
    but you need to create incidental series to create color areas in
    the chart you can set the yvalue of the incidental series to the
    lowest point on the y axis

  • Issue to drill down from a report

    Hi,
    Our requirement is we need to show three different graphs in a single report representing different data, from that we need to drill down to a new different report  ;
    Two approaches we tried with crystal report are;
    1.     We put three graphs and the table in the single report and tried to implement drill down for each graph. We could group data on the basis of first pie chart data and could drill down. But while we tried to group data for second bar chart grouping is happening only as a sub group of first group. Ie, we cannot group data independently for different charts.
    2.     In the second approach we created different  3 sub reports and added in to a main report. But Crystal report is not supporting sub report to a sub report. Ie, we cannot go to drill down report.
    It would be a great help, if you could suggest some solution.
    Thanks,
    Jomy

    Hi,
    As per my understanding, you have one report say Parent1 (SA1) and one Report say Child1 (SA2), now you want to pass some values from parent1 to child1.
    1> Create 1 interim report from parent1.
    2> In your Child report in filter part use result based on another analysis.
    Please let me know if it resolves yourissues.
    Thanks
    Anirban

  • Mysterious values appearing in Mouse-Overs

    I am new to Xcelsius (I still have troubles spelling it) and I would greatly appreciate a bit of guidance.
    I created a line chart, with the X-axis representing every month and year from January 2000 to the present. When graphed, the month/year category labels are horribly blurred, because there are so many of them.  As a workaround, I created  another set of category labels to represent January and June of each year. That works fine.  However, when users mouse-over the graphed line, a mysterious value sometimes appears where the month-year should appear.  These mysterious values appear only for those months that do not have X-axis labels.  For instance, since I have a category label for January 2002, January 2002 and itu2019s data value appear in the mouse-over fly-out. Since February 2002 does not have a month/year value, a mysterious number appears, with the February 2002 data value.  I think I know what the mysterious value is, but it is really unwanted, I didnu2019t put it there, and I canu2019t get rid of it.  How do I get rid of the mysterious numbers, and keep the data values, or --  better yet  -- trick the mouse-over to show the original X-axis containing all the month/years? 
    Thanks for your help.

    Hi BookWorm
    The trick to this is to have a second line chart which is used only to display the category values.  The main chart still contains your full data but has the category labels hidden.  Getting them lined up with a lot of data like you have can be a faff but it does work well.
    Contact me via my profile and I'll send you an example.
    Regards
    [Charles|http://www.reportex.co.uk/xc_dataload.html]

Maybe you are looking for

  • ITunes denies me the ability to change the info of my media. Anyone have the same problem?

    Whenever you desire to change the information on a certain music file or movie you've saved to your apple device (In my case, an iPhone 4S), the only things that pop up on screen are the "Play (Insert name of media here)" or below that: "Get info". A

  • I got my macbook back from apple store and now it wont start

    I took my macbook to the Apple store to get keyboard replaced. Now, I can't get it to boot up past the Apple screen with the spinning dial beneath it. I there anything I can do at home or should I take it back? More importantly, is this a fix I'm goi

  • Convertion into RTF format failed

    I am developing a FM plugin to convert .fm files into .rtf file format. I am using the following code for conversion. But the conversion is not happening. docId = F_ApiSimpleOpen("C:\\tmp\\Untitled1.fm", False); docname = F_ApiGetString(docId, docId,

  • Problem installing a downloaded add-on.

    I have downloaded mmsAutocorrect into Thunderbird; it appears in Extensions in Addon Manager. I have followed the directions through: tools-add-ons click add-ons type name in search field; press enter (add-on appears in Search). Select desired add-on

  • Jvmti, jdi and tool development

    We're building a suite of monitoring tools that will help us inspect and manage our enterprise-class app. We currently have working an instrumenting interface (via mbeans) that uses javassist to instrument bytecode; this tool runs as an agent within