Create a simple target line in a graph

The only way I can create currently a target line is to create a dummy column and set my target value.  Then put this dummy column in my measurements of rows in my table.  Three issues that I see with this are:

(1) line is not the entire table from left to right.

(2) target line is coded in my dimension of color values

(3) an another annoying thing, the target of title is repeated for each value of the coast

There must be a way to create a static row that is not based on a dimension and the ability to keep my own legend.

I've linked a sample below:

http://i.imgur.com/BC844pU.PNG

Thanks in advance

Curious to know if anyone knows how to create a solid target line?

Thank you

Tags: Business Intelligence

Similar Questions

  • How to create a static row in the bar graph line in obiee 11g?

    Hello

    I have a requirement where the user wants to see a line in the bar chart.
    Now, the line is just static, we have not available to draw the graphic line of data field.
    is there a way to create a static line in the chart and display it in the graphic line of bar ombo?

    Thanks in advance...

    for example, I have created static line '10' on the Forex and now using this column as line by line bar report, but it is not showing the extent of '10' line in the graph.

    Drag the column measures section of the graph (line - Vertical axis) to change this static value to create a prompt box edit and pass the value to the column using Variable presentation (as told by Fernando)

    Thank you

    Angelique

  • How to create a simple grid as a plan for a pane of glass?

    CS6.

    Sorry if this question sounds stupid, but I'm sure he's actually.

    I want to create a simple square grid that I can color and take my Glazier to quote.

    The overall size of the Group of experts will be 600mm width x 930 mm high. It's actually a wooden panel in an existing entry door.

    The grid lines (where the lead pipe will be) will be as follows:

    Horizontal:

    1 to the top 100mmm

    1 to 100mm from the bottom

    Portrait:

    1 to 100mm from the left

    1 to 100mm from the right

    That's all. Real simple. He should meet with the central panel being about 400mm of width 730 mm in height. This will probably end up as plain glass (white), but with a model obscuring any.

    Once I have the grid I can experiment with different colors for the other 8 squares.

    It would be better if the lead lines are fairly "BOLD", and I guess that a framework outside he went.

    I have really need color more than just basic in places, but if it is possible to apply a sort of brush or filter window, so that it looks more like real stained glass, it would look much better.

    Thanks for reading this :-)

    Fill in the boxes would depend on how they were made and whether they're on a transparent layer.

    Here is a video of the method I used. Let me know if it helps.

  • I want to create a simple document with 2 pages?

    I want to make my plugin to create a simple document, as soon as my Plugin is loaded into Indesign. I have my IStartupShutdownService derived class so that it is called on startup.

    But this fails to line 23 below.

    What else should I include in my .fr file?

    class LTestStartupShutdownServiceImpl : public CPMUnknown<IStartupShutdownService>
    {
    public:
        LTestStartupShutdownServiceImpl(IPMUnknown* boss);
        virtual ~LTestStartupShutdownServiceImpl();
        virtual void Startup();
        virtual void Shutdown();
    };
    
    
    CREATE_PMINTERFACE(LTestStartupShutdownServiceImpl, kLTestStartupShutdownServiceImpl)
    
    
    LTestStartupShutdownServiceImpl::LTestStartupShutdownServiceImpl(IPMUnknown *boss):CPMUnknown<IStartupShutdownService>(boss)
    {
        do
        {
            const PMReal width=612, height=792;
            const int32 numPages=5, numPagesPerSpread=1;
    
    
            // Create the command.
            InterfacePtr<ICommand> newDocCmd(Utils<IDocumentCommands>()->CreateNewCommand());  //<-----this is coming null and failing
            ASSERT(newDocCmd);
            if (newDocCmd == nil)
                break;
            // Set the command's parameterised data.
            InterfacePtr<INewDocCmdData> newDocCmdData(newDocCmd, UseDefaultIID());
            ASSERT(newDocCmdData);
            if (newDocCmdData == nil)
                break;
            newDocCmdData->SetCreateBasicDocument(kFalse); // Override the following defaults.
            PMPageSize pageSize( width, height);
            newDocCmdData->SetNewDocumentPageSize(pageSize);
            bool16 bWide = kTrue; // landscape orientation.
    
    
            newDocCmdData->SetWideOrientation(bWide);
            // Size margin proportional to document width and height.
            PMReal horMargin = width / 20;
            PMReal verMargin = height / 20;
            newDocCmdData->SetMargins(horMargin, verMargin, horMargin, verMargin);
            newDocCmdData->SetNumPages(numPages);
            newDocCmdData->SetPagesPerSpread(numPagesPerSpread);
    
    
            // Create the new document.
            CmdUtils::ProcessCommand(newDocCmd);
    
    
        }
        while (false);
    }
    
    
    LTestStartupShutdownServiceImpl::~LTestStartupShutdownServiceImpl()
    {}
    void LTestStartupShutdownServiceImpl::Startup()
    {}
    void LTestStartupShutdownServiceImpl::Shutdown()
    {}
    

    Here's the file .fr:

    /* 
     * Boss class definitions.
     */
    resource ClassDescriptionTable(kSDKDefClassDescriptionTableResourceID)
    {{{
    
    
     Class
      {
      kLTestStartupShutdownServiceBoss,
      kInvalidClass,
      {
      // Implementation of IStartupShutdownService
      IID_ISTARTUPSHUTDOWN, kLTestStartupShutdownServiceImpl,
      // Implementation to IK2ServiceProvider to identify the service type as startup-shutdown
      IID_IK2SERVICEPROVIDER, kLTestStartupShutdownServiceImpl,
      }
      };
    }}};
    

    I think that it is not possible to document related handling during the power on/off. You can try kLazyStartupShutdownProviderImpl for IK2SERVICEPROVIDER?

  • trying to get used to sql * more running and creating a simple procedure

    Hello all;

    I'm getting used to sql * more after using for a while using pl/sql developer.

    I am trying to create a simple procedure and run it. See my procedure below
    create or replace procedure test(t in varchar2(200), limit in number(30))
    begin
    select tbl_report.id from tbl_report where tbl_report.id like '|| t ||%' and rownum <= limit;
    end test;
    and then I type in run hr.test ("J", 10); to run this and then press ENTER, and it does nothing. How can I run and create a simple procedure in sql * more

    Hello

    In addition to all the good points, others have done:

    When you issue a SELECT statement in SQL * Plus (or any other front end) two things happen:
    (1) a result set, containing the results of your query, is produced, and
    (2) this result set is displayed.
    Given that these two things are always done together, it is easy to forget that they are two different things.
    In PL/SQL, you must explicitly do something to catch the result set, and you must explicitly do something else to view it (if you want to display it).

    A simple way to get the result set is to use a cursor FOR loop, to extract a line at a time and run code with this line in a record variable (called the country in the example below).
    View the results is to call dbms_output.put_line.

    Here is an example:

    CREATE OR REPLACE PROCEDURE     test
    (       t       IN      VARCHAR2
    ,     lmt      IN     NUMBER          -- LIMIT is an Oracle keyword; best not to use it as a variable name
    )
    IS
    BEGIN
        FOR  country  IN ( SELECT  country_name
                          FROM    hr.countries
                     WHERE   country_name     LIKE t || '%'
                     AND     ROWNUM          <= lmt
                   )
        LOOP
            dbms_output.put_line (  country.country_name
                        || ' = country_name'
                        );
        END LOOP;
    END test;
    /
    SHOW ERRORS
    

    You can use variables, such as t and lmt, in the query without using dynamic SQL, as long as the variables do not have the same names as the columns in the table. In this case, t and lmt are good names; country_name or region_id wouldn't. (In fact, t is a reputable insofar as it cannot be confused with a column in the table of the country. T is not a good reputation in the sense that it does not give much information about what contains the variable, or how it is used. Why not call the variable target_name or name_a_trouver?

    You can run the SQL procedure * more like this:

    SET     SERVEROUTPUT     ON
    
    EXEC  test ('I', 2);
    

    If you issue the SET SERVEROUTPUT ON command, then you will not see the output of dbms_output. You must only issue the command SET SERVEROUTPUT ON once per session, but nothing bad happens if you do it more than once.

    When I ran the procedure as stated above, I got this output:

    Israel = country_name
    India = country_name
    

    Notice that "The Italy" does not appear, because lmt has 2.

    Do not create your own procedures, tables or other objects in the HR schema, or among all the other patterns created by Oracle. Create your own schema and create procedures and other objects in it.

  • To calculate the sum Vals and LV is higher than its target line LV

    When I answered this thread of application of the hierarchy and the number of subnodes
    I made this question.

    I use Oracle11gR2.

    I want the sum Vals and LV is superior to his LV of the target line to the command by sorkKey.
    Ex if LV 2, sumVal is the sum of this line and another line which LV > 2.
    MyTable
    sortKey  LV  Val
    -------  --  ---
          1   2   10
          3   3   20
          5   4   30
          6   3   40
          7   4   50
          9   2   60
         15   3   70
         16   4   80
    with MyTable(sortKey,LV,Val) as(
    select  1,2,10 from dual union
    select  3,3,20 from dual union
    select  5,4,30 from dual union
    select  6,3,40 from dual union
    select  7,4,50 from dual union
    select  9,2,60 from dual union
    select 15,3,70 from dual union
    select 16,4,80 from dual)
    expected Output
    sortKey  LV  Val  sumVal
    -------  --  ---  ------
          1   2   10     150   (10+20+30+40+50)
          3   3   20      50   (20+30)
          5   4   30      30   (30)
          6   3   40      90   (40+50)
          7   4   50      50   (50)
          9   2   60     210   (60+70+80)
         15   3   70     150   (70+80)
         16   4   80      80   (80)
    If you use subQuerys, the solution is below.
    But it's very complex :-(
    My question is "is it more simple solution?
    For ex using fuction OLAP, model clause etc...
    with MyTable(sortKey,LV,Val) as(
    select  1,2,10 from dual union
    select  3,3,20 from dual union
    select  5,4,30 from dual union
    select  6,3,40 from dual union
    select  7,4,50 from dual union
    select  9,2,60 from dual union
    select 15,3,70 from dual union
    select 16,4,80 from dual)
    select sortKey,LV,Val,
    (select sum(b.Val)
       from MyTable b
      where a.sortKey <= b.sortKey
        and b.sortKey <
            (select nvl(min(c.sortKey),99999)
               from MyTable c
              where c.sortKey > a.sortKey
                and c.LV <= a.LV)) as sumVal
      from MyTable a;

    In fact, it can be simpler:

    with t as (
               select  1 sortkey,2 lv,10 val from dual union all
               select  3,3,20 from dual union all
               select  5,4,30 from dual union all
               select  6,3,40 from dual union all
               select  7,4,50 from dual union all
               select  9,2,60 from dual union all
               select 15,3,70 from dual union all
               select 16,4,80 from dual
              )
    select  sortkey,
            lv,
            val,
            sum(val) over(order by sortkey range between current row and rng following) sumval
      from  (
             select  sortkey,
                     lv,
                     val,
                     nvl(
                         (select min(b.sortkey) from t b where b.sortkey > a.sortkey and b.lv <= a.lv) - a.sortkey - 1,
                         max(sortkey) over() - a.sortkey
                        ) rng
               from  t a
             )
      order by sortkey
    /
    
       SORTKEY         LV        VAL     SUMVAL
    ---------- ---------- ---------- ----------
             1          2         10        150
             3          3         20         50
             5          4         30         30
             6          3         40         90
             7          4         50         50
             9          2         60        210
            15          3         70        150
            16          4         80         80
    
    8 rows selected.
    
    SQL> 
    

    SY.

  • Draw the new lines on the graph of the intensity

    I'm trying to attract the XY axes by an arbitrary point on a graph of intensity. I can draw two lines across the image (suite of messages like this link below), but they don't really seem FDNE to the top one the coordinates I spesify. I know that I have to correct the fact that the vertical scale increases from top to bottom, but how do I draw lines to the (x 0, y0) position I spesify? It seems that the lines are superimposed on the image, but not related to the axes of the actual intensity chart.

    http://forums.NI.com/T5/LabVIEW/overlaying-XY-line-onto-intensity-graph/TD-p/398963

    but you need made "vertical mirror".

  • draw lines on the graph of the intensity

    I want to draw lines on the graph of the intensity.

    I am already looking for some questions before.

    I know there is a vi could draw line on the graph of the intensity by dragging the mouse.

    But I need more precisely what set the length and the angle between the horzontal line.

    The setting is very ideal for me. But I don't know how to use it in the intensity chart.

    Is there anyone can help or give some advice?

    Your example is not so great because it uses 100% of CPU on a kernel at any time, do nothing.

    Here's a quick rewrite of my old example here. He draws an angle with the specified length and angle to where you click on the chart. This should help you get started. Modify if needed. (Also remember that trigonometry is much easier when using complex numbers )

  • Create Volume Simple

    I went to check out Help & Support center and I followed the steps, and I converted the disk to a dynamic disk to create a simple volume.

    When I went to right click on the dynamic disk, I should click on "New Volume" so I can complete the wizard.

    But the problem is, when I try to click on "New Volume" it doesn't let me, it not show in a dark gray text, how to do now?

    I even tried to use the command promote, but when I enter 'Diskpart', 'create volume simple [size = 400] [disk = 0] '.

    It gives me a new list as:

    Add - Add Mirror

    Create - create the partition or volume

    Exit - exit diskpart

    .. .etc

    What should I do now?

    What is your operating system? The dynamic disk could not work on Windows Home edtiton, BTW, is it one unallocated space on your disk to sylvie, to create the volume, that you must have a space of unalloaceted first of all, you could make reference to 'how volume Dynamics cerate .

  • Disk management does not allow me to create the simple volume

    I have a 60 GB SSD and a 1 TB drive.

    I reinstalled Windows 7 and partitioned md SSD for the OS. I want to use my hard drive for storage.
    So now I have the SSD as my drive (C :) with only the OS and installed programs important. When I go to disk management, it shows my disk 0 looking fine, then it shows my disc 1 (my 1 TB HHD) empty, not even let me create a simple volume.
    Whenever I do a right-click on disk 1 I only get the option "change drive letters and paths...» »

    How can I fix it?

    Go to http://www.easeus.com and download free Easeus Partition Master.  It is much easier to use and works when the Windows disk management program is not.

    Good luck.

  • It is possible to create a simple paint with common tools CC Flash application?

    Tools:

    Aligns,

    Shadow

    BUR...

    Create the object

    Transformation tool?

    Geometric design.

    Painting surfaces with a texture

    Alpha...

    Effects of images.

    Export to the format of many

    Just the right things, we can find another Flash animation thing.

    No timelime.

    No interpolation.

    No video editing.

    A tool for everyone. Much better than MS Paint with a minimum of tool and affordable to a wide audience.

    I am now using Flash CC just to make images, such as Photoshop and illustrator, it's too much for my little use. And Flash is pretty simple if you do not use the features of Action Script or animations.

    Yes, it is possible to create a simple drawing program, but...

    1. you would not be able to save your work (unless it's an Air application).

    2. why? There are already many free paint there, programs of MS Paint to Paint.NET.

  • can not find the line in the graph editor

    I put a few keyframes left the movement spuqre.  but I can't find the line in the graph Editor.   

    Please help me

    graph editor.jpg

    You must select a property to view the chart.

  • Hello! Is it possible to convert a trace made with the Brush tool a blob in a simple brush trace (a simple vector line - not two lines with a filling in between)? Thank you very much for your help!

    Hello!

    Is it possible to convert a trace made with the Brush tool a blob in a simple brush trace (a simple vector line - not two lines with a filling in between)? Thank you very much for your help!

    No, I don't think.

  • Need to create a simple menu mobile in Muse

    I would like to create a simple drop-down list for mobile exactly like here: http://www.brianmichaelgossett.com (resize on the phone). I'm stuck and would appreciate any help you can offer, thx

    Hello 250whiteline3,

    If you are working on a separate mobile presentation, then you can create it in the Accordion Panel widget customization.

    Please see the links below that shows the steps to do so.

    Add a cool activating menu Adobe Muse - YouTube mobile site

    How - to's "Adobe Muse CC Engineering Team.

    Kind regards

    Vivek

  • Create a Simple VM without the list of resources

    Hi all

    I try to use create workflows simple virtual machine but always error because I'm not insert resource pool parameter because in our data center, we have no resource pool... I read CreateVM_Task is always the list of resources to use, no chance I can create new virtual machine without using resource pool?... Thank you

    In fact, you have a pool of resources as Joerg escapes to... However, regardless of the status of the DRS, your clusters and stand-alone hosts even have a root resource pool "Resources" that the vCO client can see through the vSphere API. This pool of resources of root is NOT visible in the vSphere Web client or vSphere Client:

    As you can see above, the stand-alone host 'esx - 03 a .vcoteam .lab' has a pool of resources 'Resources', like the "Standby" cluster that has no active DRS

Maybe you are looking for