How can I make a Chart Item ?

I read this post :-
chart item in oracle forms 10g
but that not what i need ...... what i need is simple explanation of *how to build a Chart item based on Data Block ?*
I'm using DB 10gR2 , Developer Forms 32 Bit Version 10.1.2.0.2 (Production)
and Windows XP SP2 64-bit

It is existing because to support the chart items your created in old versions of forms. However, you cannot use it for "Creating New Charts". It has become useless because, you have other powerful / more featured charting mechanism is available (one of which is BI Graph). So, why do you want to go for Old Chart Items, which has less features than using a full fledged BI Graph?
-Arun

Similar Messages

  • How can I make a bullet item with a custom Bullet character such as a check mark ?

    Hi Everyone,
        I'd like to make a list with Bullets, but I can find a bullet character which I am looking for. Especially I'd like to make Bullet characters available in PowerPoint, such as check mark, and others. How can I make a bullet item with a custom Bullet character or picture such as a check mark ?
      Regards
      Cem

    Cem777 wrote:
    Hi Everyone,
        I'd like to make a list with Bullets, but I can find a bullet character which I am looking for. Especially I'd like to make Bullet characters available in PowerPoint, such as check mark, and others. How can I make a bullet item with a custom Bullet character or picture such as a check mark ?
      Regards
      Cem
    Search InDesign help for "change bullet characters" (without quotes,) and use the technique described there with the Zapf Dingbat font as suggested by Peter S.
    You can also use InDesign's glyphs panel (Window > Type & Tables > Glyphs) to scroll through all the character sets in all the fonts that InDesign has access to on your system, to look for check mark characters.
    After you have created a paragraph style that applies the customized check-mark-bullet that you want, every time you apply that paragraph style, the custom bullet appears. So, while it's a few steps to set up the style the first time, from then on it's automatic.
    If you really need a particular bullet that's not in any font you have, you'll need to search for fonts that have check mark characters and buy one or use a free one. Caution: free fonts aren't always created to the same strict standards that commercial fonts from reputable font foundries observe; free fonts sometimes cause problems when printing or exporting to PDF. You can search Google for "fonts with check mark" (without quotes.)
    HTH
    Regards,
    Peter
    Peter Gold
    KnowHow ProServices

  • How can I make a chart ignore cells until their value is changed from 0?

    In the corresponding table, I used conditional formatting to hide zeros in the highlighted row by conditionally changing the text color to that of the table background. However, the zero value's are still represented in the corresponding chart as you can see in the attached photo . How can I make the chart ignore certain cells only until their values are changed from zero? Thanks in advance!
    Ryan

    Hi Ryan,
    Leave the cells empty until they're needed, or, if the cells' contents are determined by a formula, revise the formula to insert a null string if the value is zero.
    =IF(your formula = 0, "", your formula)
    Regards,
    Barry

  • How can I make a new item in left column in iPhoto?

    I would like to add an item in the left column of iPhoto list of Library, Albums, etc. for "Folders" because when I sort "Albums", folders are not sorted with it.
    Is there a way to do that?
    If not, how can I separate albums from folders or have folders sorted amont the albums?
    Thanks for your help,
    Vernon

    You can not "create" new source catagories
    Folders hold either albums or other folders - so you can create an "all folders" folder and place all of your folders in it
    LN

  • How can you make the Chart "Color Highlights" Item Condition val a variable

    Hi,
    I have a report with a chart on it.
    The chart has on Item Condition on it to change the color of each bar to red if the value is under a certain value.
    This value needs to be passed in as a parameter to the report.
    The condition looks like this
    if  Avg PerformancePercent < 90 then bar color = red
    The 90 in this condition needs to be set from a parameter P_PerformancePercent_Threshold.
    I am producing the report in Visual Studio 2005 using CrystalReportViewer to display the report.
    Since the value field seems to only take in numeric values I have assumed there is no way to use a parameter something like.
    So I am looking at doing this through code.
    The object model for the ChartObject does not have many properties/methods on it.
    Is there any other way to achieve this?
    Thanks, George

    Functionality using the Crystal Reports SDK in Visual Studio .NET is limited to the appearance of the chart in the viewer such as height and width. See the following for more details;
    [ChartOject Members described|http://devlibrary.businessobjects.com/BusinessObjectsXIR2SP2/en/en/CrystalReports_dotNET_SDK/crsdk_net_doc/doc/crsdk_net_doc/html/crlrfCrystalDecisionsCrystalReportsEngineChartObject_MembersTopic.htm].
    [ChartObject Properties described|http://devlibrary.businessobjects.com/BusinessObjectsXIR2SP2/en/en/CrystalReports_dotNET_SDK/crsdk_net_doc/doc/crsdk_net_doc/html/crlrfCrystalDecisionsCrystalReportsEngineChartObject_PropertiesTopic.htm].
    99% of this time, if you can not do something at design time, you will not be able to do it at runtime either. See [this|http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_dev/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes.do] note.
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup

  • How can I make the data persistent when using plist ?

    I have a UITableView table1. And when I touch any cell in the table a new UIViewController appears and it have two UITextField's name and description. After entering the data in both the text fields I used the save button to save them. In save method I wrote the code for the data to be stored in plist.
    -(void)save:(id)sender
    indexOfDataArray = temp;
    NSString *string1 = [[NSString alloc]init];
    NSString *string2 = [[NSString alloc]init];
    string1 = nameField.text;
    string2 = descriptionField.text;
    NSDictionary *myDict = [[NSDictionary alloc] initWithObjectsAndKeys:string2, string1, nil];
    [myArray addObject:myDict];
    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *documentsDirectory = [paths objectAtIndex:0];
    NSString *path = [documentsDirectory stringByAppendingPathComponent:@"VideoData.plist"];
    [myArray writeToFile:path atomically:YES];
    UIAlertView *alertMesage = [[UIAlertView alloc] initWithTitle: @"Save Alert" message:@"The data entered is saved" delegate:nil cancelButtonTitle:@"cancel" otherButtonTitles:nil] ;
    [alertMesage show];
    [alertMesage release];
    [myArray retain];
    But the problem is every time I restart my application the data in the plist is deleted. How can I retain the data in the plist name I specified ?

    I think yes, I am specifying only one file name to store in the path. I understood my where I am wrong.
    If I added data in plist for two items(item1 and item2). And again I need to add next two items(item3 and item4) . How can I make item3 and item 4 do not replace item1 and item2 ?
    Thank You.

  • How can I make the X axis temporally proportional?

    I have a very simple line chart with decimal values on the Y axis and dates on the X axis. The dates are one per row in my source spreadsheet but they are not "evenly spaced". How can I make the chart reflect linear time, plotting the date categories irregulary along a smooth timeline?

    Look forward to the real experts' comments on chart overlays.
    As for date-format for X-axis it took some fiddling for me (sometimes it was greyed out) but it does work.
    Either leave it as Same as Source Data or pick Date and Time and choose one of the many formats available, some shorter than the source data format.
    I haven't figured out how to make specific dates show up on the axis, e.g. in my example it would be nicer to show mid-month and/or month-end dates. Numbers seems to split into intervals based on the number of Steps, with little (no?) control over where intervals begin/end.

  • I keep Mail open on my MacBook Pro and prior to Mavericks items would open on my 27" secondary display. How can I make this happen in Mavericks?

    I keep Mail open on my MacBook Pro and prior to Mavericks items would open on my 27" secondary display. How can I make this happen in Mavericks?

    In System Preferences > Mission Control, uncheck mark Displays have seperate windows. This should bring you back to the secondary display you had before the upgrade. You may have to open Mail, the first time and place it on your secondary display. You also won't have the advantages of the dock and menus on the secondary display.
    I keep my own secondary display with these settings because I need the ability to expand a window across both displays.

  • How can I make invoice when down payment is bigger than item value ?

    Dear all,
    please, I need make invoice with bigger down payment than the item value.
    How can I make invoice when down payment clearing value is bigger than the item value ?
    When I do Release To Accounting, I have got a massage:
    "Total of down payment to be billed too high. See billing document item XXXXX"
    Please, how can I solve this problem?
    Thank you
    Peter

    Hello,
      I would like to underline that this is not a problem, but a standard, and in my opinion rightful behaviour of SAP: in a dowpayment process, when you create the invoice document, you should deduct only an amount less or equal to the invoice amount. And in the following invoices you will deduct the remaining downpayment amounts still open.
    Also under al legal and fiscal point of view, I guess how would you print the invoice? With a minus value?
    Best regards,
    Andrea

  • 3D bar charts export as jagged PDFs - how can I make them smooth?

    I want to export my 3D bar charts as PDFs, but they export without anti-aliasing or smooth vector lines. The bars are jaggy, not clean. How can I make them higher quality?
    I've checked my system settings and those in Acrobat 7 Professional, the 'smoothing' is turned on. I can't find any similar posts here either.
    Any ideas?

    I want to export my 3D bar charts as PDFs, but they export without anti-aliasing or smooth vector lines. The bars are jaggy, not clean. How can I make them higher quality?
    I've checked my system settings and those in Acrobat 7 Professional, the 'smoothing' is turned on. I can't find any similar posts here either.
    Any ideas?

  • How can I make both Items recurring in a promotional modifier

    I need to create a modifier for the scenario such as:
    If Item A is bought 10 pcs
    and
    Item B is bought 5 pcs
    then
    promotional free Item C should be given 2 pcs.
    Now both Item A and Item B needs to be recurring because only if Item A becomes 20 pcs and Item B becomes 10 pcs, then get Item C becomes 4 pcs.
    Thanks,
    Anindya.

    Pl do not post duplicate threads - How can I make both Items recurring in a promotional modifier
    Srini

  • My Mac Hard disk recently broke and was replaced. Now, although my computer is authorised in itunes store, it won't let me re-download purchased items (esp OSX Lion). How can I make computer re-download previous purchases?

    My Mac Hard disk recently broke and was replaced. Now, although my computer is authorised in itunes store, it won't let me re-download purchased items (esp OSX Lion). How can I make computer re-download previous purchases?

    Never mind - I didn't realize that I just needed to wait a while for the Cloud stuff to cycle through and load. Solved!

  • How can I make a graphic (scatter chart) with 1 "y", but multiple "x" (to make a multiple linear regression)?

    how can I make a graphic (scatter chart) with 1 "y", but multiple "x" (to make a multiple linear regression)?

    Émilie,
    The default for X-Y Charts is for X values not to be shared, so it's entirely possible for you to create X-Y pair sets that have common Y-values and independent X-values.
    This answer assumes, as always, that I properly interpreted your problem statement. A linear fit line for each pair set should satisfy.
    Jerry

  • How can I make a folder in the TV for my home movies

    How can I make a folder in the TV shows for my home movies collection?  I have created a folder in the library in finder and put all the videos in there but they do not appear in itunes.
    pshultz

    It's best to never move iTunes media around in Finder. Add it to the Library through the iTunes interface by dragging them into the window. Once they've been added to the library, you can try using Get Info on the files in iTunes and change the tag info to make them group together. (A unique album name should do this.) If you want them to be included with TV Shows, you can try using Get Info to set the Kind to TV Show (found under the Options tab in Get Info), but I'm not sure if it will work. Otherwise, you could make a playlist and drag them into to access them all in one convenient spot.
    If you add the items as noted above and they still do not appear in your library, it's probably because they are not a compatible format.
    Message was edited by: Diane Wordsmith

  • How can I make a "Keyboard Lock" while iTunes is playing?

    How can I make a "Keyboard Lock" while iTunes or other apps are playing? They should work/play on, screen should still be on, only keyboard is (maybe Password-) locked.
    Thanx in adv, tttimo

    Menu > Apple > System Preferences > Keyboard > Keyboard Shortcuts Application Shortcuts > + > Application: Browse to Pages > Menu Title: Footnote > Keyboard Shortcut: hit combination of keys > Add
    You will need to restart Pages but should then see it next to your Menu item.
    Peter

Maybe you are looking for

  • Issue with running Linux on a Windows 7 64 bit (on MC7 mac book pro via Boot Camp)

    I'm running Windows 7 64 bit (native via BootCamp) on a new MBP MC7. When I'm trying to run a 64 bit Linux (CentOS) using VM Player, I received following error " CPU doesn't support long mode. Use a 32 bit distribution". Is it because of VT is not en

  • Odd Problem in Photoshop Elements 9???

    I just loaded up Elements 9 and brought in photos using Get Photos and Videos from Files and Folders.  I have duplicated folders of photos on a C and D drive.  I use the D drive as a backup for the C drive and occasionally due a back up so new photos

  • ESB -- Routing the fault

    hi, I am new to ESB development. Please share your thoughts on the following: 1. When I register a new/modified ESB process, a dialogbox with the below message comes up, if ok is clicked then shows the Registration Summary window with service registr

  • How to open Excel in JSP

    Hi, I want to open Excel application by clicking on link which should open the file which is in <table><tr><td> format. I could able to do it by setting content type but the worksheet is opening in the browser itself and not as a seperate excel appli

  • How do I block firefox hello in my business network

    We don't allow any kind of chat in the office, and expend lots of time banning facebook, skype, Gmail chat, etc., from our networks. Unfortunately, we rely quite a lot on Firefox for our web interoffice applications (intranet). This seems like anothe