Adding a link to series / anychart XML points

I have a function in the database that I call a process by their Summit. The process called data on an element hidden by their Summit. I have replace the placeholder #data # in the XML file with the hidden item. It all works very well. What I want to do is add links in the xml file, just as the creation of a series in the apex Wizard, say for example:

  select 'f?p=' || :APP_ID || ':1:' || :APP_SESSION || '::NO:RP:P1_QUARTER:' || quarter as link
  , label
  , value
  from table


That's how my function in the database looks like:

  --
    l_chart_data_xml   clob;
    l_chart_data_xml_1 clob;
    l_chart_data_xml_2 clob;

  begin
   --
   l_chart_data_xml_1 := '<series name="S1" type="Bar">';
   l_chart_data_xml_2 := '<series name="S2" type="Line">';
   --
   for  i in r_rec.first .. r_rec.last
   loop
     --
  l_chart_data_xml_1 := l_chart_data_xml_1 || '<point name="' || r_rec(i).quarter ||'" y="' || r_rec(i).val1 || '" />';
  l_chart_data_xml_2 := l_chart_data_xml_2 || '<point name="' || r_rec(i).quarter ||'" y="' || r_rec(i).val2 || '" />';
  -- 
   end loop;
   --
   l_chart_data_xml_1 := l_chart_data_xml_1 || '</series>';
   l_chart_data_xml_2 := l_chart_data_xml_2 || '</series>';
   --
   l_chart_data_xml   := l_chart_data_xml_1 || l_chart_data_xml_2;
   --
   return dbms_lob.substr(l_chart_data_xml, 32767, 1);
      --
    end;


That's what I want (summary):

  l_chart_data_xml_1 := l_chart_data_xml_1 || '<point name="' || r_rec(i).quarter ||'" y="' || r_rec(i).val1 || '" link="www.google.nl" />';


or better yet, integrate the link into the point as an attribute:

'f?p=' || :APP_ID || ':1:' || :APP_SESSION || '::NO:RP:P1_QUARTER:' || quarter


However, this is not possible because the link as an attribute for the point means something else: xml reference point

Is there another possible way? I thought that we can somehow add javascript as link, much like here: example of pie chart

This way I can add the string for the link service. I don't know how to incorporate it. If someone has ideas won't let this chance to be my hero!

Oracle 11g XE

Apex 4.2.4

For those interested, I found the answer in the action attribute: interactivity in AnyChart

Tags: Database

Similar Questions

  • Adding a link in a slide show?

    Hello, I have a question about adding a link in a slide show in Muse.

    Basically, I need to first slide appears with a link called "more" that people can click to add to the page.

    On the next slide, I would need the visitor presses the button "Read more" to get them to another section of the Web site.

    Any ideas?

    Thank you

    I was at work, try to understand this when I came across your post. It worked for me bro, I appreciate there dude. The only thing I had trouble with the interpretation was first and foremost on how to add the hyperlink, but then I saw that the drop down menu "added / filter links" is available in the upper part. Awesome Dude, thanks there, thanks a lot!

    PS by clicking on the image container is what makes the hyperlink in the menu drop-down available for me, if I've highlighted the image itself was not available.

  • The use of ResourceTemplates to create AnyCharts XML fails...

    I created a resource model called "getChartData".
    The GET (Media Resource Type) is defined as:

    Select ' text/x-apex-html", xmlquery (content of return of f_getchartdata)
    of the double

    (getchartdata is a procedure spitting XML). If I run this from directly from the browser, it returns the XML structure.
    (Also when I can replace this just query Select ' text/x-apex-html ', double f_getchartdata it works well).

    Now, I want this output to the input of a chart by AnyChart. So I replace in the Source region of the map
    "XMLFile = #HOST #apex_util.flash? p = & APP_ID.: & FLOW_PAGE_ID.: & APP_SESSION.:FLOW_FLASH_CHART5_R #REGION_ID #
    with
    XMLFile = http://localhost:7777/apex/getChartData (which should see the ResourceTemplate)

    but alas, that doesn't seem to work.

    Because I'm not sure if XMLCallDate is added as a parameter, I created another model with this setting: getChartData? XMLCallDate = {model}

    All ideas, clues? Or is it--for one reason or another - never go to work?

    (Because it is linked to the listener of the APEX and APEX itself I'll cross post - and do a cross-reference, so no matter where you post your answer, as long as you do ;-)))

    APEX listener Forum thread: http://forums.oracle.com/forums/thread.jspa?messageID=9418611

    TIA
    Roel

    Published by: Roel March 7, 2011 14:13

    Hi Roel,

    It is true that AnyChart could add other parameters to the call.
    In your case, XMLCallDate is a parameter AnyChart uses to make the unique calls so that they don't is cached by the browser.

    Just for your reference; If you look at htmldb_util.flash which has the possible settings too.

    You are running and APEX of the listener itself? If not, try that in the charts in APEX do not work like default cross domain.

    If you look in firebug demand which is send and the answer you get back, you should know a little more.

    Hope that helps,
    Dimitri
    -http://dgielis.blogspot.com
    -http://apex-evangelists.com

  • SQL Querry has worked in the workshop of SQL but not in series AnyChart.

    Hello

    I use the following statement in SQL Workshop:

    T3.fname | NULL, select ' ' | T3. Lname label, to_char (to_date (t1.total_time, 'sssss'), 'mi: ss') Week_2_Time, t2.total_weight week2_weight

    evt_scr_board t1, evt_scr_board t2, t3 mem_profile

    where t1.mem_serno = t2.mem_serno

    and t1.evt_rnd = 1

    and t2.evt_rnd = 2

    and (t1.rx_cd = 'RX' and t1.evt_rnd = 1)

    and (t2.rx_cd = 'RX' and t2.evt_rnd = 2)

    and t3.mem_serno = t1.mem_serno

    It produces the following as expected:

    Screenshot 2014-11-14 09.34.09.png

    However when I run the same querry in a series of anychart page shows "No Data".

    Screenshot 2014-11-14 09.36.12.png

    The querry works fine if I don't need to convert the number to a date format. Any help would be greatly appreciated.

    Thank you!!!

    Syntax for a series is:

    SELECT link, label, value
    FROM ...
    

    In your last example, sysdate week_2_time isn't a value or time.

    The format below for your query would work, but I doubt that is what your waiting for.

    SELECT NULL,
           'Me',
           TO_NUMBER (TO_CHAR (SYSDATE, 'mmddyyyy')) week_2_time,
           135 week_2_weight
      FROM DUAL
    

    Jeff

  • Link to iframe from xml file

    Hello

    Could someone tell me what to do with this "simple question?"

    I want to connect to an iframe from a xml file, how do I write this code?
    It is used on a page of portfolio with a flash element:
    link: http://www.clownfish.nl/cfcc/portfolio/portfolio_ca/portfolio_ca.html

    part of my xml code example:
    < element path = "images/1.jpg" width = "200" height = "200" >
    Point < title > < /title >
    < description > the item description < / description >
    "< iframe name ="of the project"src="./projecten/project-1.html ">
    < / iframe >
    < / point >

    Thank you

    Pascal

    HI -.

    Not an answer, but have you looked at your page in Firefox?

    "helppascal911" wrote in message
    News:g56tsp$51O$1@forums. Macromedia.com...
    > Hello,
    >
    > Could someone tell me what to do with this "simple question?"
    >
    > I want to connect to an iframe to an xml file, how do I write this code?
    > It is used on a portfolio with a flash element page:
    > link:
    > http://www.clownfish.nl/cfcc/portfolio/portfolio_ca/portfolio_ca.html
    >
    > some of my xml code sample:
    >
    >The title of the item
    > Description of the object
    >
    >

    >
    > Thank you,
    >
    > Pascal
    >

  • Adding dynamic links on my site

    Hi all

    I'm fairly new to Dreamweaver and someone who can help this demand is greatly appreciated. I'm currently building a website where the website links to a specific server, and whenever new files are added to the server, the list of files on Macromedia Dreamweaver. The point of this is that we have used in the organization that will keep downloading their files to this server and other employees would view and download files from the site directly.

    One way to do is to manually update the site with new links, but that would be VERY heavy. Can we build this so that the site updating with all the lates files sitting in this folder on a server? Then employees can download new files from our company site.

    Please help on this application!

    If your server supports the display of content within a directory, you
    could download all the new files in a folder on the server named little "matter."
    If
    There is no indication of default or the homepage inside the directory "whatever", a
    page with a list of the contents of the server. Here is an example of
    what I mean: http://alt-web.com/Large/

    It's not elegant, but it works very well for archiving stuff.

    -Nancy O.
    ALT-Web Design & Publishing
    www.Alt-Web.com

    "piyushdabomb" wrote in message
    News:g5nva5$493$1@forums. Macromedia.com...
    > Hi all,
    >
    > I am fairly new to Dreamweaver and all who can help you with this request
    is
    > appreciated. I am trying to build a Web site where links from the site
    for a
    > specific server and whenever new files are added to the server, the list
    of
    > files appears on Macromedia Dreamweaver. The point of this is that we
    have
    > employees of the organization that will keep downloading their files to this
    > server and other employees will want to view and download these files
    of the
    > directly from the site.
    >
    > One way to do is to manually update the site with the new
    Links
    > but it would be VERY heavy. We build it so that the site
    Refreshes
    > with all the lates files sitting in this folder on a server? Then, the
    employees
    > can download new files from our company site.
    >
    > Please help on this application!
    >

  • Adding a linked to your app the app world icon...

    Hi all

    Can someone point me to a page that generates or provides icons for linking your game like Android and Apple Blackberry App world:

    You can find these icons on your homepage portal provider when you connect. There are different sizes, so choose the size you want and then use it. You may need to reduce the images if you want a really small icon. Hope this helps

  • Help adding a link to a Pro first of Flash video

    I created a video in Premiere Pro, and I want to add hyperlinks to a few words I added titles in Premiere Pro (I ask on this forum because I saw a similar question referred in this way).

    .

    In order to add hyperlinks functional, I created a couple of SWFs in the Flash CS4 IDE, which would serve as invisible buttons (if used movieclips) that the link to the respective sites via NavigateToURL.  After checking to make sure things were working with sovereign wealth funds, I dragged them in my first pro project Panel and added to the timeline occasionally when I need the links are available.

    Then I exported the FLV to Premiere Pro with Adobe Media encoder.

    The flash site I'm building using the Gaia framework, so I added the FLV as an asset to one of my pages of Gaia and all this load normally - the video and I see the bright sections, that I created to serve as clickable links.  Links within the video, however, do not work, and I didn't know if it was a problem of Gaia or if there's another step (or not) I have to take to make this work.

    (If there is another way to make it work, clickable links in a Premiere Pro video, I'm open to that as well).

    Again, I know that a lot of this Treaty, Premiere Pro, but I hope I can get help on AS3 forum since this is where the Premiere Pro forum led a similar question used Flash as a solution.

    Thanks for any response.

    I have Premiere Pro and its Flash capabilities. However, adding an application interactivity Flash would not otherwise. Simply create a transparent overlay on the video and add MouseEvent.CLICK listeners. In other words-, it is identical with buttons.

  • Need help with adding a link

    My site is www.cafeclassics.com.  I built it from a model.  I'm sure that what I try to do is simple, but I can't seem to make it work.  All I need to do is the section in the middle on the right that says: "Check out our new online store" a link to http://shop.1asecure.com/cafeclassics.  The image is set up in a cell while I can't make a point of interest or something else.  I tried everything I can think of.  Any help would be appreciated.  I'd be happy to send my files and pay someone to fix it for me.

    Thank you!

    Large

    Download http://home19.inet.tele.dk/jgom/new.zip

    opload clear gif to the pictures folder index file and use the code you

    I did remove the div (layer) and change the link to be style instead of the div... (#link1 {} set

    This link/image is floating above the place where the link shud be

    (Hope you like the border effect to hover)

  • Adding a link to a carousel html

    I followed a tutorial to build a flash craoussel and have had no problem in building that.  I wanted to add a link to a section of the carousel's html, but everything I've tried so far has failed.  Through all the information for the carousel to a xml file and everything works fine except for the link.

    I have slightly modified the tutorial so I have an extra box on the information page that contains the web address of the site they watch in the portfolio.  I have the address appears, but I can't use the text as a link.

    the box that I put in is a dynamic text box that has been put in place with the following parameters

    theLink.html = true;

    theLink.htmlText = t.Link;

    so as far as I know, these are defined to be able to manage the tags/code html, but they are not games.

    I tried to pass the link through the swf file of the XML with the following code, but it happens to break the entire application.

    Link="<![CDATA[<a href='http://www.acmeart.co.uk/pip_new']]"

    to see how I work up to now file, please see the link below.

    http://acmeart.co.UK/carousel


    In my view, that the problem is not with the flash application but more with how I'm moving the html link to the application of the xml file.  I will attach the xml file to the post.

    What I had in mind was to place the link line in your text. Something like this:


    title = "Book - CD ROM"
    body = "this product was a Shockwave greeting card. It began as a puzzle. The riddle has been solved, it opens and displays the holiday greeting. "" < a href = "http://www.amazon.com" > buy a copy. < a\ > ' >
       

    The url is in the text. The html markup is escaped as of html entities.

  • How to link action support with reward points forum

    Hello

    I'm new here but I am registered as a developer. I would like to know how to link my actions here as post an article in the knowledge base or similar for the area of jam rewards program. Because I had to register separately for this forum. The site developer connection has failed.

    Thank you

    If you used the same e-mail address as you did box @ Jame, that should be enough. Otherwise, you can try to contact the Support of Jam: [email protected]

  • Link the Eloqua Customer Central points to EU and Topliners... what support?

    Hello.. just noticed that links to areas of support have changed once again.

    The only way I can now seem to access my case is if I go to Eloqua today and you click on the link.  Usually, I'm in the middle of troubleshooting of an article and it was very nice to be able to hit this "Customer centric" link at the top of the page and choose if I wanted to go to Eloqua University, community (Topliners) or the Support Portal...  WITHOUT having to waste my place inside Eloqua itself that I start have reported/double checking the items on the new case (IE, taking screenshots, to check if there are solutions or if I can consistently reproduce the problem - whatever it is, etc, etc.).

    Or is it possible that the link is there, but instead of horizontally as before, I'm not vertically and my IE is not let me scroll down?  (I noticed this before with Eloqua sites... Something very wobbly and I am not able to scroll all the way to the bottom of the page at all).

    Otherwise, anyone having this problem or is it just me?

    CCportal.jpg

    Cheli - happy news! Looks like it's fixed now. You should see the following text:

  • Someone knows why "adding / filter links ' are gray when I try to link a menu item?

    I tried manual menu mode, I went to pages that I want to reassign and set the options of the menu 'include the page without hyperlink '.

    while I could try the reallocation manually... cannot bind to do anything unless I go to a complete dynamic menu... problem is, I want that these menu items.

    but want to use anchor links and wink-scroll on one page in a part of my site... If I highlight ordinary text, no problem. If I connect a graph,

    No problem. Menu is a go though...

    Hello

    Just to confirm, are you facing problems linking your menu manual?

    If so, make sure that you have the selected menu item, not the text in there.

    If it's something else that you are having a problem with, well want to share a screen shot, it would help to understand the problem.

    Concerning

    Sonam

  • Æ added losing link to dynamic effects body?

    Hallo!

    I'm new here and for ICC / video editing in general.

    A few days ago, when I would replace a finished body sequence with an AE composition, my project of the ORGANIZATION are in AE, and all the effects that I applied in the BODY.

    Now, when I click on 'Replace with AE Composition', my body clip appears in AE, but only the original .mov file that was the basis of the sequence of the ORGANISM, but without all the color changes that I applied in the BODY. Also, the window in AE showing all the effects applied to the BODY isn't appearing any more.

    A few days by the dynamic link between the ORGANIZATION and AE, I see a window in AE showing all the effects applied to the BODY.

    Also the AGENCY now seems to gray instead of the rose in the pane of the sequence in the sequence, but appears pink in the effect control pane. But all the effects have disappeared. When I press CTRL + Z (after the dynamic link), then all my effects appear again in the body effects tab. I tried to reset the AE workspace, but no results. When I export the same sequence in an AGENCY DNx file and then importing it to AE, it appears with all my changes color.

    QUESTIONS RELATING TO THE:

    1. everyone knows what I'm doing wrong?

    2. is the workaround solution to export the body project finished DNx & then this import to AE for finishing of sharpening and denoising also an acceptable workflow in terms of maintaining video quality? (I used DNx 100 for Canon EOS 5 d MIII H264_mov images.

    My workflow is:

    1 - import a clip of h264 .mov in the BODY

    2 - transform into a sequence and apply effects

    3. then inside the BODY to replace with a composition of AE for sharpening and noise using EI "Remove Grain" effect reduction

    4. can make sharp and final sound of BODY clip to Adobe Media Encoder

    Only now step 3 not working anymore...?

    Thanks in advance,

    Sebastiaan.

    Post edited by: SebastiaanFP

    Who would say that the project file is damaged or has the database files in the media cache. I suggest the sequences are importing a new project file 1 at a time and clear your cache of media.

    Eric

    ADK

  • Adding HTML link purchase subscription from article

    Hello

    Is it possible to create a HTML link from a button or a text in an article that invokes the subscription popup box buy?

    On the home page for the viewer which shows the individual issues, you can click to purchase a number, or click on a banner at the top to buy a subscription.

    Once this is clicked a pop-up box will appear which indicates different price levels.

    Is there anyway to start the purchase of subscription in an article?

    Thank you

    If you have a business account, you can use a link ww.gotoStore to open the store HTML that is associated with a Store named custom nav bar button. If you have a Pro account, I'm not aware of a way to view subscription options. You can create a button that opens the library if that helps.

Maybe you are looking for