Custom clickable tables objects and legends

Hello

The requirement is a little weird but urgent .

Well all I need is a complete flexible graph where each element on the x-axis or each element on the y-axis is clickable. Also, since I use a bar graph. I don't want to click on the bar and get more details on the data, which gives an in-depth analysis on how we arrived at such a number.

Even the chart legend should be clickable in this case.

For example

Chart.JPG

In this case gold, silver and Bronze on the legend should be clickable, which would generate more data.

In addition, 'USA', 'China', 'Russia' and the bars representing the corresponding values must be clickable.

Please let me know if I'm not clear.

Thank you very much

Piyush

You can click on the bars and legend with the help of the change in default value & click Properties as below:


dataProvider = "{YourDataProvider}".
selectionMode = 'unique' multiple ///or you want
change = "Alert.Show ("Hi I'm Bar")" "
>

. / / instead of the alert, you can call your function

While click on axis I think probably you need to use AxisRenderers, but still I don't know if converters supports, click or not.

Check this box

http://livedocs.Adobe.com/Flex/3/langref/MX/charts/AxisRenderer.html

It can help.

If this post answers your question or assistance, please mark it as such.

See you soon,.

PRAD.

Tags: Flex

Similar Questions

  • Custom hash table object

    Hi I have the following script which should provide an array with the names of vm and the datastorecluster they are on: -.

    $hashT = @ {}

    $vmlist = import-Csv "C:\vmMove\vm3.csv".

    foreach ($vm to $vmlist)

    {

    $vmname = get - vm $vm.name

    $dscname = get-datastorecluster - vm $vm.name

    $hashT = @ {}

    VMNAME = $vmname

    DSCLUSTER = $dscname

    }

    }

    $props = New-Object psobject-property $hashT

    $props | FT - AutoSize

    There are four hosts listed in the csv file, but when I run this table only wrote a line for the last host does not include the first three hosts.  What I am doing wrong? Why can't that get the hash table to view details for all hosts contained in csv.

    I have spent the better part of a day on this and just can't see where I'm wrong - thank you

    If you want just a table with these objects in there, you could do

    $hashT = @)

    $vmlist = import-Csv "C:\vmMove\vm3.csv".

    foreach ($vm to $vmlist)

    {

    $vmname = get - vm $vm.name

    $dscname = get-datastorecluster - vm $vm.name

    $hashT += new-Object PSObject - property @ {}

    VMName = $vm. Name

    DscCluster = $dscname

    }

    }

    $hashT

  • ORA-31693: Data Table object 'AWSTEMPUSER '. "' TEMPMANUALMAPRPT_273 ' failed to load/unload and being ignored because of the error:

    Dear all,

    OS - Windows server 2012 R2

    version - 11.2.0.1.0

    Server: production server

    ORA-31693: Data Table object 'AWSTEMPUSER '. "' TEMPMANUALMAPRPT_273 ' failed to load/unload and being ignored because of the error:

    ORA-02354: Error exporting/importing data

    ORA-00942: table or view does not exist

    When taken expdp and faced error mentioned above. but expdp completed successfully with waring as below.

    Work "AWSCOMMONMASTER". "" FULLEXPJOB26SEP15_053001 "finished with 6 errors at 09:30:54

    (1) what is the error

    (2) is there any problem in the dump because file as above of the error. If Yes, then I'll resume expdp.

    Please suggest me. Thanks in advance

    Hello

    I suspect that what has happened, is that demand has dropped a temporary table to during the time that you run the export - consider this series of events

    (1) temp table created by application

    (2) start expdp work - including this table

    (3) the extracted table metadata

    (4) the application deletes the table

    (5) expdp is trying to retrieve data from the table - and gets the above error.

    Just to confirm with the enforcement team that the table is just a temporary thing - it certainly seems it name.

    See you soon,.

    Rich

  • How can I make a clickable object, and when I click it, it moves down another object (extend)?

    How can I make a clickable object, and when I click it, it moves down another object (extend)?

    Only with a specific widget. Check the usual sites, if is not the default widgets menu and the accordion.

    Mylenium

  • Problem w / tables objects

    Hello.

    I have two tables. One contains three rectangles, and the other three circles. Something like this:

    var myRectArray:Array = [rect1, rect2, rect3];

    var myCircleArray:Array = [circle1, circle2 and circle3];

    All six items are clickable. How can I tell what picture is being activated by the client?

    Please, I'll be very grateful for any help on this matter.

    There are two variants:

    1. create a dictionary (see the documentation for more information) to get a table for each object.

    If you need to add each object and a table.

    dict [rect1] = myRectsArray;

    ...

    dict [tr1] = myTrArray;

    ..

    and after

    var arr:Array = dict [event.target];

    Something like that.

    2. create a Rectangle extended to save all the data you need.

    I think that the first alternative is better.

  • TABLE object TAB

    Hello

    I need assistance quickly is possible.

    I work with Labwindows/CVI, and in the Panel, I use a "Table" object in an object "Tab.

    I added a tab in my control panel and I have created several tabs in this object. Then, in each tab, I added a table.

    I can not access this table on each tab.

    I would add the line in the table with the InsertTableRows function but I can't because I don't know how to inform the controlID parameter in the service

    (int InsertTableRows (int panelHandle, int controlID, int, int numberOfRows, cellType int rowIndex);).

    In my ".h" file, these objects are declared as follows:

    It is a * very * problem tat common everyone faces when he starts using tab controls. The tale is that each tab page is a sign in itself with its own handle and that objects on the tab page must be addressed with this handle. GetPanelHandleFromTabPage can help you to recover the correct Panel handle to use.

    More detailed information can be found here and here and here. Here the online help GetPanelHandleFromTabPage

  • objects and the record type

    Hello experts.

    create type emp2_obj is object
    (
    objno number
    ,
    objname varchar2
    (20),
    objdept number
    );

    create type emp2_objarr is table of emp2_obj;

    and

    type emp2_rec is record
    (
    recno number
    ,
    recname varchar2
    (20),
    recdept number
    );

    create type emp2_recarr is table of emp2_rec ;

    Objects and types of records are created similar and have the same similar object.  Is it only advisable to use registration type if you use a collection in PL/SQL type... Please advice

    user13328581 wrote:

    the only reason why I ask is because he asked during an interview

    -Objects and the types of records are created similar and have the same similar object.  Is it only advisable to use registration type if you use a collection in PL/SQL type... Please advice

    Not at all.  You can use record types used with collection types outside.  They are a group concept.  If you want to group a set of values together (including fields), you can use a record.  It may be convenient.  You can send documents around proc and functions.

    Be aware that the record types are limited to procedures, functions, anonymous blocks and packages (i.e. PL/SQL), while the types of objects are stored in the dictionary of data as a separate Oracle objects (they can also have methods, the records may not).  Object types can be used in SQL, as said sol.beach types of records (outside of the intelligent pipeline situations) is for PL/SQL.

  • How to establish the relationship between the tables contact and Global (entity) in Oracle Service Cloud to preconfigure data

    Hello

    We strive to integrate the OPA attributes to the Cloud Service Oracle tables to store session data for the customer portal users.

    We tried mapping the attributes of the OPA with relevant tables of cloud Service Oracle? Is there any installation of additional data to create to retrieve the session data for the particular user / contact?

    We managed to save tha data in arrays of cloud Service for users of ananymous and also well regarding customers portal users but to preconfigure data do we need to do any additional configuration / mapping to the contact table?

    Please help on the establishment of the relationship between the contact and Global (new table created in cloud Service) tables.

    Thank you

    Vivek

    Hi Vivek,

    To load data from the Contact in the the OPA policy template, you must configure the widget of the OPA. For instructions, see the following articles:

    - Incorporate an interview that uses data portals in Oracle Service Cloud Customer Portal

    - Deploy and configure the sample OPA widget

    - Insert the widget to sample in a customer portal page

    Obviously, you need to do the mapping in OPM as well, but even if the mapping is correct, you will not be able to load the Contact data unless the widget of the OPA is implemented.

    See you soon,.

    Jasmine

  • Failed to add the custom library group object?

    I recently upgraded computer and reinstalled Livecycle on my new computer. On the new computer, in Livecycle, when you try to add a custom library of objects, object I get the following message:

    "Cannot add the object"name"to the Group of the library."

    I checked and made sure that in the properties of the group, all items "allow objects...". "are checked. The location of the libraries are in my file C:\Program Files (x 86) \Adobe\Acrobat 10.0\Designer 9.0\EN\Objects\ . Any idea what's going on? It will be a huge setback for me! I have to update the custom very often my objects.

    Thanks in advance.

    All of a sudden it just started working. Don't know what happened.

  • indexed - color mode how to remove a custom color table color

    Hello

    I'm working on a bitmap to which I put my color mode to "indexed color Mode.  I created a custom color table and I added 9 colors.  I would like to delete one of these colors, but I can't find a way to remove a color from my existing custom color table or start with an empty custom color table so that I can add only colours I want.  If someone can tell me how to do either of these things, I'd be very happy.

    Thanks in advance,
    Paul

    I had the same problem. I'm not sure that you can remove colors. I just changed the color, I'm not one of the existing colors that I want. It does not hurt to have two colors of the same value in the table.

    Edit: This is what I warned you about in your other post.

  • Duplicate an object and create it move on the stage

    Hello

    I'm having a problem in actionscript 3.0 game development. The game plan is to have planes flying across the screen and the player must shoot by clicking on it. As the player gets more points, it must be of planes flying across the screen. No matter what I try, I can't work. Can anyone offer any coding suggestoins for coding in general and him duplicate the object and spawning it out side of the scene.

    Create the plan as a library item and assign a class name (for example you name Plane).  To create a new instance of it you just use...

    var another_plane:PLane = new Plane();

    addChild (another_plane);

    planes.push (another_plane);

    The last line place the plane newly created in a table that you set above all create so that you have a way to target the various plans which, added to the process (moving, etc) them.  When one of them is no longer at stake, you can remove the table so that it gets not be processed.

  • Custom template: table in a table

    Hello

    I've recently started working with a custom template for the first time. I'm already far enough to get what I want to accomplish, but I have no idea how to implement what I'll describe here.

    In my application, I need data in tables 3 (simplified, it's actually more than that). The data in these tables have a 1 to many relationship. The data are the following: 1 the activity has many tasks, task 1 has several subtasks.

    I want to show a screenshot but as I can't post pictures here, so simplified, what I have is:

    Assembly1

    Task1

    Subtask1

    Assembly1

    Task1

    Subtask2

    Assembly1

    Task2

    Subtask3

    Assembly1

    Task2

    Subtask4

    Here he repeats my model for all ranks

    But what I would like to have:

    Assembly1

    Task1

    Subtask1

    Subtask2

    Task2

    Subtask3

    Subtask4

    Here it does not extend the model to all ranks, but adapted to the data. The number of tasks in an activity and the number of subtasks in a task are not fixed.

    Can someone tell me how to proceed?

    The code in my template:

    < div class = "complex" >
    < table cellpadding = "0" border = "0" cellspacing = "0" >
    < tr > < td #SOD # < table > < /tr > >
    < tr > < td #OOD # < table > < /tr > >
    < tr > < td #ACT # < table > < /tr > >
    < /table >

    < table cellpadding = "0" border = "0" cellspacing = "0" >
    Taak < tr > < th > < /th > < th > and Naam < /th > < /tr >
    < tr > < td > #TAAK # < other > Master Department: #AFD_CODE # < other > Bruno nummer: #BELMO # < other > planning: #PLANNING_LA # < table > < td #WN_NAAM # < table > < td > write subtaak/mijlpaal toe < table > < /tr > >
    < /table >
    < h2 > #SUBTAAK_OF_MIJLPAAL # < / h2 >
    < table cellpadding = "0" border = "0" cellspacing = "0" >
    personeelsleden < tr > < th > Subtaak/Mijlpaal < /th > < th > links < /th > < th > < /th > < th > Subsubtaak/Submijlpaal Aktie < /th > < th > links personeelsleden < /th > < /tr >
    < tr > < td > #SUBTAAK_ID # #SUBTAAK_MIJLPAAL_OMSCHRIJVING # < other > Duiding: #DUIDING # < here > Beleidsvlaggen: #BELEIDSVLAGGEN # < other > deadline: #DEADLINE # < other > status: #STATUS # < other > Nummer: #NUMMER # < other > Regelgeving: #REGELGEVING # < table > < td > quotation: #VERANTWOORDELIJKE # < other > Andere: #ANDERE_PERSONEELSLEDEN # < table > < td > < table > < td > submijlpaal Subsubtaak : #SUBSUBTAAK_SUBMIJLPAAL # < here > #SUBSUBTAAK_ID # #SUBSUBTAAK_OMSCHR # < other > Duiding: #SUB_DUIDING # < other > deadline: #SUB_DEADLINE # < other > status: #SUB_STATUS # < table > < td > quotation: #NAAM_VERANTW # < other > Andere: #ANDERE_PL_SUBSUB # < table > < /tr >
    < /table >
    < / div >

    Tell me if you need the SQL so and I'll post it.

    I am currently working with the test environment Oracle supplied us, because we test if we can use APEX in our company.

    The version is Application Express 4.2.4.00.07 and it is running on Oracle 11 g.

    Kind regards

    NDG

    I've added page 9 as a copy of your original state page and created 2 regions report on it. Two reports use your query, to which I added 3 analytical columns and an order by clause:

    ...
      , row_number()
          over (
            partition by op_activiteit.act_id
            order by  op_taak.taak_id
                    , op_teamplanning.subtaak_mijlpaal desc
                    , op_teamplanning.subtaak_id)                                   activity_rn
      , row_number()
          over (
            partition by op_activiteit.act_id, op_taak.taak_id
            order by  op_teamplanning.subtaak_mijlpaal desc
                    , op_teamplanning.subtaak_id)                                   task_rn
      , case
          when   row_number()
                   over (
                     partition by op_activiteit.act_id
                     order by op_taak.taak_id
                            , op_teamplanning.subtaak_mijlpaal desc
                            , op_teamplanning.subtaak_id)
               = count(*)
                   over (
                     partition by op_activiteit.act_id)
          then
            '
' else null end close_activity ... order by op_activiteit.act_id , op_taak.taak_id , op_teamplanning.subtaak_mijlpaal desc , op_teamplanning.subtaak_id

The activity_rn column numbers each line in an activity, the task_rn column number each line of a task, and close_activity generates a closing for the activity container tag div when a line is the final subtask for an activity. The order by clause for the command in the analytical columns is necessary to render the hierarchy of subtasks in task within activities.

The display of the Standard model uses the Standard model to show all data in the query and display the values of the new columns to illustrate how they are used in the model line Expressions. The display custom model shows the report using this template:

Model of line 1

#SOD#
#OOD#
#ACT#
Taak Werknemer Naam
#TAAK#
Master afdeling: #AFD_CODE#
Belmo nummer: #BELMO#
Planning LA: #PLANNING_LA#
#WN_NAAM# Voeg subtaak/mijlpaal toe

#SUBTAAK_OF_MIJLPAAL#

Subtaak/Mijlpaal Gelinkte personeelsleden Actie Subsubtaak/Submijlpaal Gelinkte personeelsleden
#SUBTAAK_ID# #SUBTAAK_MIJLPAAL_OMSCHRIJVING#
Duiding: #DUIDING#
Beleidsvlaggen: #BELEIDSVLAGGEN#
Deadline: #DEADLINE#
Status: #STATUS#
Nummer: #NUMMER#
Regelgeving: #REGELGEVING#
Verantwoordelijke: #VERANTWOORDELIJKE#
Andere: #ANDERE_PERSONEELSLEDEN#
Subsubtaak of submijlpaal: #SUBSUBTAAK_SUBMIJLPAAL#
#SUBSUBTAAK_ID# #SUBSUBTAAK_OMSCHR#
Duiding: #SUB_DUIDING#
Deadline: #SUB_DEADLINE#
Status: #SUB_STATUS#
Verantwoordelijke: #NAAM_VERANTW#
Andere: #ANDERE_PL_SUBSUB#
#CLOSE_ACTIVITY#

Status of model 1 rank

Founded use PL/SQL Expression

Expression of model 1 rank

#ACTIVITY_RN# = 1

Model of the line 1 is used for the first line of an activity, view activity information, its first task, and his first subtask.

Model of line 2

  
Taak Werknemer Naam
#TAAK#
Master afdeling: #AFD_CODE#
Belmo nummer: #BELMO#
Planning LA: #PLANNING_LA#
#WN_NAAM# Voeg subtaak/mijlpaal toe

#SUBTAAK_OF_MIJLPAAL#

Subtaak/Mijlpaal Gelinkte personeelsleden Actie Subsubtaak/Submijlpaal Gelinkte personeelsleden
#SUBTAAK_ID# #SUBTAAK_MIJLPAAL_OMSCHRIJVING#
Duiding: #DUIDING#
Beleidsvlaggen: #BELEIDSVLAGGEN#
Deadline: #DEADLINE#
Status: #STATUS#
Nummer: #NUMMER#
Regelgeving: #REGELGEVING#
Verantwoordelijke: #VERANTWOORDELIJKE#
Andere: #ANDERE_PERSONEELSLEDEN#
Subsubtaak of submijlpaal: #SUBSUBTAAK_SUBMIJLPAAL#
#SUBSUBTAAK_ID# #SUBSUBTAAK_OMSCHR#
Duiding: #SUB_DUIDING#
Deadline: #SUB_DEADLINE#
Status: #SUB_STATUS#
Verantwoordelijke: #NAAM_VERANTW#
Andere: #ANDERE_PL_SUBSUB#
#CLOSE_ACTIVITY#

Model 2 Condition

Founded use PL/SQL Expression

Model 2 Expression

#TASK_RN# = 1

Model of line 2 is used for the first line of a task that is not the first in an activity, displaying the task and its first subtask.


Model of line 3

  

#SUBTAAK_OF_MIJLPAAL#

Subtaak/Mijlpaal Gelinkte personeelsleden Actie Subsubtaak/Submijlpaal Gelinkte personeelsleden
#SUBTAAK_ID# #SUBTAAK_MIJLPAAL_OMSCHRIJVING#
Duiding: #DUIDING#
Beleidsvlaggen: #BELEIDSVLAGGEN#
Deadline: #DEADLINE#
Status: #STATUS#
Nummer: #NUMMER#
Regelgeving: #REGELGEVING#
Verantwoordelijke: #VERANTWOORDELIJKE#
Andere: #ANDERE_PERSONEELSLEDEN#
Subsubtaak of submijlpaal: #SUBSUBTAAK_SUBMIJLPAAL#
#SUBSUBTAAK_ID# #SUBSUBTAAK_OMSCHR#
Duiding: #SUB_DUIDING#
Deadline: #SUB_DEADLINE#
Status: #SUB_STATUS#
Verantwoordelijke: #NAAM_VERANTW#
Andere: #ANDERE_PL_SUBSUB#
#CLOSE_ACTIVITY#

Model of line 3 is the default, used model used to show the subtasks, following the first line of activities and tasks.

All models include the column #CLOSE_ACTIVITY # to automatically close the container activity, if the model is used to render the last subtask activity.

As stated above, I have concerns about the HTML structure you are here, but not knowing the application or data (not to mention the language!) I did not any changes that respect. After seeing the query, I've got so concerned about this (and the data model). It certainly looks like the query could be simplified.

Orders and paging should be carefully considered with a report at several levels and a model of this nature.

Users can apply ad hoc you place your order by clicking on the table headers, and a known order must be used to maintain the hierarchy of the subordinate task/activity/task. If you want users to be able to sort the subordinate activities/tasks/tasks, you will need to provide some sort of additional control to enable them to clarify this and use the order specified in the conditional line template mechanism as well as the order of global report.

Pagination of the APEX is problematic where a single physical line in the results of the query is mapped to multiple logics 'lines' or levels in the layout of the report. The simplest approach is to use no paging and build the application to apply filters to report so that the result set does not contain an excessive number of lines.

  • HFM 11.1.2.2 change custom dimension Table

    Hello

    We notice that there is a change in the HFM 11.1.2.2. dimension related to the custom of table structure.
    We have a passage of the 9.3.1 to 11.1.2.2. and note this change. We have a written request
    to extract the log of the database in the 9.3.1.

    Since the change in the structure of the table, someone knows how to bind the columns lCustom1 and lCustom2 of the WFD
    Table of * CUSTOM_ITEM or related table to get the name of the custom dimension member label?

    Thank you

    Hello
    In the 11.1.2.2 version, the lcustom1 field is of type BigInt (8 bytes)
    You must use the CUSTOM_MAP table to identify the size of dimension Custom1 and Custom2
    assuming that the two custom1 and custom2 is 4 bytes each. Then use the following formula
    to calculate the upper and lower lcustom1 bytes, for example:

    DECLARE @i bigint
    Set @i = 12884901894
    Select
    CUSTOM2 = (@i & 0xffffffff00000000) / 4294967296.
    CUSTOM1=@i & 0x00000000ffffffff

    Result:
    CUSTOM1 = 6
    CUSTOM2 = 3

    Then, you can reference the result of the CUSTOM_ITEM table.

  • How to change data objects and update the corresponding task and task forms?

    Hi all

    I modified this thread because I found that I had many questions to ask.

    1.
    I'm quite new to OBPM and would like to know how to change data - for clarity objects add a new attribute "Dependents of the Client" "Customer care" - and therefore update the task that uses the 'customer information' what makes via data binding - I get an error message here - or via the data about the data Task-The chosen tab it does not appear to be linked to my approach in some sort.

    2.
    Will be the task form that I generated earlier in < 1 > update automatically? Is it possible to update manually if the task has been clearly customized?

    3.
    What are the objects of project data? They do not store values in my process. They are for the arguments only - like reusable process?

    Thanks in advance,

    Kind regards

    Yanis

    Hi Yanius,

    (1) assume that you start from scratch. First, you declare your data object structure. To do this, you must go to the BPM project Naviagtor, right-click on 'Catalogue of trades' and create a new Module. Then you can right click on the module you created and select the new object of trade. Add all the attributes you need. It is the same to declare a class in Java. Second, you must declare a variable of the type process you have created: select the process, go to the Structure display (if you don't go and activate it in menu view Jdev-> Structure). Right click on the Process data object and create your variable. It's like setting a variable in Java. In short, answering your question, make the path opposite: find in your process of type "Customer Details", then go to your catalog Business, right click and change the definition to add what you need.

    (2) the human task will not update automatically (annoying). If you change the object itself, so you don't need to change your mappings because actually there the same object you are through the task as in / out argument. There are two things here: the human task and form associated with it (where probably change you the subject i.e. customer details). Go to the form (.jspx) - click on the tab links (by default, you are in the Design). In the links page, there is a link on top: "Page Définition File" (something like proj/pageDef/...xml). Open the XML file and go to the source. There you can add manually now all the attributes you need and that were not available before (i.e. dependent Client). It's a little complicated, but at least you don't have to recreate it. particularly useful if you have already implemented and subsequently form, you need to add more things (business is very good to say otherwise, "I would like to see something else in the form" ;)

    (3) project data objects are visible by all processes that you have in the project rather than the object of process data that are visible only to the method where you set the variable to. This means that you declare an object of data of the project once and then it will be available to all processes. Keep in mind that each process has a copy of it. In other words, it is not like a global variable that everyone sees. If edit you in a single process, other processes will not see the new value.

    I hope that I have answered your questions.
    See you soon,.
    Felipe

  • The Clause to fetch records in a table object. ?

    Hi all

    I want to know where in Oracle, we can find documents related to the TABLE(OBJECT TYPE) Clause.

    Please find the code below which I use.

    CREATE OR REPLACE TYPE OBJ_EMPNO AS OBJECT (EMPNO NUMBER);
    */*

    CREATE OR REPLACE TYPE TAB_EMPNO AS TABLE OBJ_EMPNO;
    */*

    DECLARE
    TYP_EMPNO TAB_EMPNO: = TAB_EMPNO (OBJ_EMPNO (10), OBJ_EMPNO (20));
    BEGIN
    FOR REC in (SELECT FROM TABLE (TYP_EMPNO)) LOOP *.
    DBMS_OUTPUT. PUT_LINE (TREC. EMPNO);
    END LOOP;
    END;
    */*

    THE ABOVE Code works fine. But my question is where can I find documents related to the Clause TABLE (OBJECT TYPE).

    I searched a lot and found a part in the Oracle documentation, but most of them is not related to my requirement.

    If you'd be grateful if someone provide me with some information here.

    Thank you
    MK.

    in Oracle we can find documents related to the TABLE(OBJECT TYPE) Clause.

    See TABLE().

  • Maybe you are looking for