About Chart types in IChart

hai,
Can some one plz explain me what is the need of going for Group Bar,Pie, Regression , Coustom Charts in IChart and
im trying to plot Custom chart type with Tag Query values but iam not getting that chart with the TagValues
plz can u tell with which query template we can plot the Custom Chart
Thanks &Regards,
Apsara

Hi Apsara
Barchart: Bar charts are used for comparing two or more values.
Grouped bar chart: It is another type of Bar chart, with data values ordered by tagname/dataset, then by observation.
Pie Chart: It is circular chart and it is divided into sectors.
To see these charts:
http://localhost/LighthammerCMS/Help/Applet_Reference_Details/Applet_Overview.htm
To get info about other charts see this thread:
Regarding information about Chats
For custom chart:
When there is need to represnt diffrent type of datas like line chart and bar type chart in the same graph use the custom chart. To get the chart type, Go to the pen details tab and change the pen type from default to required type.
Hope this helps you.....
Regards,
Kishore

Similar Messages

  • Getting all chart types in IChart

    hai can some plz solve this problem
    here im trying to plot the complete chart types of
    Ichart in a single page with tag query.
    for this i did it through simulator server i took One TagQuery , selected Mode as Taglist .And i took IBrwoser for list of tags with multi selection nd in that i enabled AlwaysExpandedMode and the Multiple Selection mode.Here im taking Chart types with select option in html and passing that variables into irpt file.in html page im taking list box of tag name for selecting tags and drop down of chart type for selecting chart type and one submit button for submiting the form.
    for tagvalues im taking a array for counting the tag values nd passing it into irpt
    that nd all fine
    iam getting chart also but iam getting chart for only five values. so whats the problem im facing here is after refreshing if i select two tag values its getting replace with the first two values of previous chart .
    so where im getting the problem could u plz let me know how to solve this problem
    Thanks &Regards
    Apsara

    Hi apsara,
                 From what i understood, the problem seems to be that the array is getting overwritten. Is it true??? Can u be more clear on this??
    Regards,
    Sushma.

  • Business Graphics - Chart Type - Columns, and Simple Scatter Type

    Hi,
        I am interested to know more about Business Graphics Specially Chart types Columns and
    Scatter type ( and Time Scatter).  I am facing problem in producing X and Y Co-ordinate values for Charts. (Specially Date Values in X Axis.). I tried with Time Scatter type and need more documents.
    Expecting Good Documents and suggestions.
    Thanks, 
             Vinod V

    Hi
    Check this link
    http://help.sap.com/saphelp_nwmobile71/helpdata/en/86/243f403f0a9354e10000000a155106/frameset.htm
    http://help.sap.com/saphelp_nwmobile71/helpdata/en/0b/79553b066d9414e10000000a114084/frameset.htm
    https://help.sap.com/saphelp_nw04/helpdata/en/0c/95c83956852b51e10000000a114084/frameset.htm
    thanks

  • Different chart types in one chart

    Hi guys,
    I need to know if there is any wat to mix two different chart types in WAD.
    For instance, I have to key figures and I want to draw in the same chart Lines for one KF while I want Bars for the other KF.
    Is this possible ?
    Regards,

    This is done using the Secodary Axis. Check the following link.
    http://help.sap.com/saphelp_nw70/helpdata/en/0b/ac553bf3a76258e10000000a114084/content.htm

  • I have a MacBookPro6,2 and would like to connect an older Dell flatscreen, model L17BNS. I would welcome any information about the type of cable I need and any settings I might need to change, etc. Thank you for your time.

    I have a MacBookPro6,2 and would like to connect an older Dell flatscreen, model L17BNS. I would welcome any information about the type of cable I need and any settings I might need to change, etc. Thank you for your time! I really appreciate the assistance. Kathy

    According to:
    http://en.community.dell.com/support-forums/desktop/f/3515/p/19351107/19767627.a spx#19767627
    It has DVI ports.  This means you are best to use an adapter that supports DVI.  Note there is no audio that carries over DVI.  What you need is a mini-Displayport to DVI adapter, and the proper DVI cable. Since Dell doesn't have the specs, you'll need to tell us if you have pins or holes, and how many are grouped.

  • My daughter had completed a chart in pages. I saved it and then clicked on other chart types. Now I can't go back to the original chart she made even though I have not re-saved the file. How can I go back to her original chart with data?

    My daughter had completed a chart in pages. I saved it and then clicked on other chart types. Now I can't go back to the original chart she made even though I have not re-saved the file. How can I go back to her original chart with data?

    I don't get what you are saying.
    Is this all the same document?
    What version of Pages?
    Have you tried to revert to a previous version?
    Peter

  • Chart Type in SAP BI

    Hi Experts,
    is it possible to implement a new chart type for report in SAP?
    Because the the sap Type could not help us?
    Cheers
    Gilo

    This is not possible directly with SAP BI.
    You can try to implement a 3rd party add on similar to the one provided by IBS Solution. Please see attached link for some of the custom chart types implemented.
    http://ibs-solution.de/CMS/en/gallery-3.html
    Thanks.

  • Can not converted to be a charter-type field

    Hi everyone,
      As i m new in abap . i wrote this code and received charter type error.
    *& Report  ZT11
    REPORT  ZT11.
    DATA: aa type lfa1.
         tables lfa1.
         select * from lfa1 into aa where lifnr > 'Z' .
             write / aa.
            endselect.
        if sy-subrc <> 0.
             write / 'No records found'.
            endif.
    error is
    'AA' can not converted to a character-type field.
    plz help to reslove the error .
    thanks in advance.
    Edited by: Faisal Abbasi on May 9, 2010 11:19 AM

    Hi Dear,
    This is Unicode problem, In unicode systme some restriction in programing.
    There is three kid of data type
    Character Processing ( C, N, D, T and STRING ).
    Byte Processing Mode ( X and XString ).
    Numeric Data Type ( I, P , F ).
    whenever in structure all kind of data types are used then you can not use WRITE and then whole structure name.
    in LFA1 in ECC6.0 if any custom fields are not added then up to length 1232 is determined as Character.
    so if you will give aa(1232) it will work similarlly other kid of remainig data tpe you move in another structure of required format and then check.
    REPORT ZT11.
    DATA: aa type lfa1.
    tables lfa1.
    select * from lfa1 into aa where lifnr > 'Z' .
    write / aa(1232).
    endselect.
    if sy-subrc 0.
    write / 'No records found'.
    endif.
    For better Understanding Check
    The following structure has both character-type and non-character-type components:
    BEGIN OF STRUC,
      a TYPE c LENGTH 3,    "Length 3 characters
      b TYPE n LENGTH 4,    "Length 4 characters
      c TYPE d,             "Length 8 characters
      d TYPE t,             "Length 6 characters
      e TYPE f,             "Length 8 bytes
      f TYPE c LENGTH 28,   "Length28 characters
      g TYPE x LENGTH 2,    "Length 2 bytes
    END OF STRUC.
    The Unicode fragment view splits the structure into four areas F1 - F5.
    [ aaa | bbbb | cccccccc | ddd | AAA | eeee | fffffffffffff | gg ]
    [            F1               |  F2 |  F3  |       F4      | F5 ]
    Offset/length access is only possible for the character-type initial fragment F1. Specifications such as struc(21) or struc7(14) are accepted and are handled as a single field of type c. An access such as struc57(2), for example, is not permitted in Unicode systems.

  • Bubble chart with scatter chart type and different bubble sizes

    Hello everybody,
    I would like to create a bubble chart (scatter chart) within Oracle 11g and Apex 4.2 with the standard chart types that come with Apex (anychart).
    I want to integrate two different KPIs (key performance indicators) in the chart, one for each axis (x and y) and additionally the size of the bubbles shall represent the size of the company, the KPIs belong to.
    That is to say, every bubble represents a company with two KPIs and its size.
    Now, I have problems changing the size of the bubbles. Can someone give me a hint where to start or how I could achieve this with  a standard sql query  (series) !?
    Is that possible with the standard charts (scatter type)?
    Can I control the color of the bubbles?
    How can I control the starting and ending points of the axes in order to show all bubbles completely even if they are e.g. 0,0 (x,y)  (this would show only a quarter of the bubble) or 0,3 (which would show only half of the bubble).
    I will be very thankful for some hints.
    Thank you very much in advance.
    Johnny

    Go to any chart and look at the examples.  You can view the xml, there are bubble chart examples.
    AnyChart - Cross-Platform Flash Charting Solutions For Your Project

  • Business Graphics, intermixing chart types

    Hi to all,
    Has anyone tried to intermix chart types?  Specifically, i'm trying to display a "column" type chart, but I would like to have a straight horizontal line through the chart indicating a key value or values.  Any help would be greatly appreciated.
    Thanks in advance

    Hi Michael,
    follow the following link
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/documents/a1-8-4/web dynpro tutorial and sample applications.faq#q-20
    How to use Business Graphics in Web Dynpro applications?
    The following tutorial shows you step-by-step how to create a simple business graphic using Web Dynpro.
    A simple business graphic is a chart consisting of a category and one or more data series. Column charts, bar charts and pie charts are typical examples of simple business graphics.
    Simple business graphics differ from complex business graphics, such as scatter charts and portfolio charts.
    Requirements
    In order to use business graphics in your application, you must install the Internet Graphics Service (IGS) on your server environment. Furthermore, the IGS must be configured on the J2EE engine.
    Code Sample
    The ready-to-use project is available to download from SDN.
    Corresponding Tutorial
    Using Business Graphics
    Hope this helped you
    Regards,
    RK

  • Chart type option in diadem

    Hi,
    Do we have type of chart selection in diadem as like in excel which has different chart types like line, XY scatter, pie chart. At present I need X Y scatter type chart for my data.
    For example I have data like below,
    X -  0,    0.1,    0.2,    0.3,      0.4,    0.5
    Y - 300,    0,   250,       0,       350,    0
    I need the graph starting from 300 and coming down to zero and again starting from 250 & coming down to zero and again starting from 350 & coming down to zero. There should not any line joining from zero to 250 or from 0 to 350.
    Is it possible in diadem.
    Regards,
    X. Ignatius

    Hi Igni,
    DIAdem REPORT has the most flexibility in its various curve styles, of which XY Scatter is one, but a Pie Chart is completely missing.  Most people mean by an XY scatter plot a graph of only markers.  It sounds like you're requesting some of the points be connected by a line but other points not be connected.  Is there a regular pattern to the connections?  Could you send a picture of what you want to see?  If I understand you correctly, then we can do this in DIAdem by adding a NoValue between any data point you don't want to connect with a line.
    Brad Turpin
    DIAdem Product Support Engineer
    National Instruments

  • Multiple Chart Types

    Is there a way to have multiple charts types in one chart. I can not seem to figure it out. For example, I would like to display events per day as a bar chart and on the same chart have the average of events over the last week displayed as a line.

    I have come up with a far from perfect way to overcome this. With two data sets using the same x-axis values, I made two separate charts in 3D mode (can't get it to work in 2D). Then, I set one of the charts to have its Y-axis on the left and the other on the right. You will have to also change the colour for one of the charts. As the default first colour for most of the colour groups is blue, you'll either have to choose 'fun' or a textured group. Remove the x-axis values from one of the charts. Align the two charts, group and resize to your preferred size. You might need to ungroup and then resize one of them again to get a proper fit. Bear in mind that once they're grouped, you can't make any cosmetic changes to the charts - although data changes will be properly updated.
    Rather labour intensive, but sufficient until Apple gets its act together on this.

  • How to bind chart type at run time

    Hi,
    I want to select chart type at run time using a drop down , i know the class name (CL_WD_BUSINESS_GRAPHICS) which
    has to be bind. but iam unable to bind the class.
    can any one help me.

    Hi,
    **... check view exists
    check me->if_salv_wd_view~r_view is bound.
    *... get wd root uie for adding graphic control uie
      data:
        lr_wd_root type ref to cl_wd_transparent_container.
      lr_wd_root ?= me->if_salv_wd_view~r_view->get_element( if_salv_wd_comp_table_ui=>c_uie_root ).
      check lr_wd_root is bound.
    *... use a group container
      data:
        lr_wd_group type ref to cl_wd_group.
      lr_wd_group ?= me->if_salv_wd_view~r_view->get_element( if_salv_wd_comp_table_ui=>c_uie_graphic_container ).
    *... if wd uie group container does not exist create group container
      if lr_wd_group is not bound.
        lr_wd_group = me->if_salv_wd_comp_table_ui~create_graphic_container( ).
      endif.
    *... get wd uie graphic
      value ?= me->if_salv_wd_view~r_view->get_element( if_salv_wd_comp_table_ui=>c_uie_graphic ).
    *... if wd uie graphic does not exist create graphic
      if value is not bound.
        data:
          l_source_category type string,
          l_source_series   type string,
          l_source_point    type string.
        concatenate if_salv_wd_comp_table_data=>c_name_node_graphic '.'
                    if_salv_wd_comp_table_data=>c_name_node_graphic_category
                    into l_source_category.
        concatenate if_salv_wd_comp_table_data=>c_name_node_graphic '.'
                    if_salv_wd_comp_table_data=>c_name_node_graphic_series
                    into l_source_series.
        concatenate if_salv_wd_comp_table_data=>c_name_node_graphic '.'
                    if_salv_wd_comp_table_data=>c_name_node_graphic_series '.'
                    if_salv_wd_comp_table_data=>c_name_node_graphic_point
                   into l_source_point.
        value = cl_wd_business_graphics=>new_business_graphics(
                  view                 = me->if_salv_wd_view~r_view
                  id                   = if_salv_wd_comp_table_ui=>c_uie_graphic
                  bind_category_source = l_source_category
                  bind_series_source   = l_source_series ).
        data:
          l_bind_value type string.
        data:
          lr_wd_category type ref to cl_wd_category.
        concatenate l_source_category '.' 'LABEL' into l_bind_value.
        lr_wd_category = cl_wd_category=>new_category(
                           view             = me->if_salv_wd_view~r_view
                           bind_description = l_bind_value
                           bind_tooltip     = l_bind_value ).
        value->set_category( lr_wd_category ).
        data:
          lr_wd_series type ref to cl_wd_series.
        concatenate l_source_series '.' 'LABEL' into l_bind_value.
        lr_wd_series = cl_wd_series=>new_series(
                         view              = me->if_salv_wd_view~r_view
                         bind_point_source = l_source_point
                         bind_label        = l_bind_value
                         bind_tooltip      = l_bind_value ).
        value->add_series( lr_wd_series ).
        data:
          lr_wd_point type ref to cl_wd_point.
        concatenate l_source_point '.' 'LABEL' into l_bind_value.
        lr_wd_point = cl_wd_point=>new_point(
                        view              = me->if_salv_wd_view~r_view
                        bind_value_source = l_source_point
                        bind_label        = l_bind_value
                        bind_tooltip      = l_bind_value ).
        lr_wd_series->set_point( lr_wd_point ).
        data:
          lr_wd_value type ref to cl_wd_numeric_value.
        concatenate l_source_point '.' 'VALUE' into l_bind_value.
        lr_wd_value = cl_wd_numeric_value=>new_numeric_value(
                        view       = me->if_salv_wd_view~r_view
                        bind_value = l_bind_value ).
        lr_wd_point->add_value( lr_wd_value ).
        me->if_salv_wd_comp_table_ui~add_child_to_container(
          r_container = lr_wd_group
          r_child     = value ).
      endif.

  • Chart type in WAD?

    Hi,
    I am working on charts of cone type in WAD(7.0).But I am not finding the cone shape charts.Can any one help me out.
    Thanks in Advance.
    Ravi

    Hello Ravi,
    Please change you Chart Class type and check. Since CONE is a display model and a type of chart which is available in BI7.0 as well.
    Please see this [Chart Types|http://help.sap.com/saphelp_nw04s/helpdata/en/8d/2e373be72b2f48e10000000a11402f/content.htm]
    Thanks
    Chandran

  • In the URL bar, type about:config Type geo.enabled Double click on the geo.enabled preference Location-Aware Browsing is now disabled, does not work How do you turn this Off!

    In the URL bar, type about:config
    Type geo.enabled
    Double click on the geo.enabled preference
    Location-Aware Browsing is now disabled
    Google will not remove their location aware feature saying it is picked up by the location aware feature in my firefox browser and referred me to your like where I found the above to disable this feature. It just sent me to a yahoo search page. How do you disable this I want to use US Google not Google.ua and you don't need this to help me locate anything in the Ukraine. When I take my laptop with me on trips does my firefox local change wherever I go?

    See:
    * http://www.mozilla.com/firefox/geolocation/
    *http://browserspy.dk/geolocation.php

Maybe you are looking for

  • SSD showing in bios but not during windows fresh install.

    Hello all, Currently I built a new computer. I-5 4760k 8gigs Cosiar Vengance 750 watt power supply MSI g45 gaming mobo GTX 770 I'm trying to use the computer off a new Samsung evo 120. I want to do a fresh install of windows 7 on it. The bios picks i

  • PDF DocumentCreation Exception error

    Hi Experts,   In my application, I have created one interactive form. While I am trying to deploy the form, I have get the follwoing error. Kindly help regarding this. com.sap.tc.webdynpro.services.exceptions.PDFDocumentCreationException: ../../inowi

  • Transaction for overview of all custom (Z) programs in ERP.

    Dear gurus, I am looking for a transaction/report which gives me an overview of all custom programs/elements build in a system. I used to know this transaction but I cannot find it anymore (searched throughout Google and SDN ). Can anyone help me out

  • Just installed OS X updates and can no longer boot into Bootcamp

    Just installed the latest updates for OS X Yosemite and now I can't boot to my Bootcamp partition. It doesn't show up in Startup Disks and it's not an option when booting while holding Option. The partition still shows up in Disk Utility but it no lo

  • Unique workflow requirement

    Dear Experts, I am designing a work flow for Delegation requests at one of my client location. The work flow path is as follows Requester -> Role Owner-> Security Admin The requester will be raising a request for some other user to whom he is delegat