Showing Donut chart

Hi Experts,
Quick Question - Currently endeca studio supports 2D pie chart . So is there any way to customize in order to show Donut chart instead of 2D pie chart .
Any Inputs would be highly appreciated
Thanks-
Dinesh

Janice , Thanks for your response
As per your reply I understand that direct customization is not possible from studio, So can i expect that  there is a way to customize it from Backend
Also Currently Endeca displays  Stacked line charts with shaded areas  but we wanted to display shaded Overlay line chart
I was able to acheive Overlay line chart through Basic Lines chart of Studio , But shaded part was missing
So, Is Shaded overlay line chart possible through customization ?
Why I'm asking this features is because we are planning to implement web analytics reports through endeca . If we can implement this then the reports will get richer look with newer formats
Thanks-
Dinesh

Similar Messages

  • Some questions related to donut charts in SSRS

    I am interested in knowing the following things:
    How to show total of all legend items in legend block itself as "Total".
    How to show Total (say amount) in the center of donut chart.
    How to customize the thickness of donut in donut chart and radius of inside and outside circle (the other thickness).
    The lable markers (arrow) are not coming as a right angle arrows when i tried to use the donut and pie charts, the are coming as randomly angular lines which is hampering the beauty of the report.
    Please reply as soon as possible. Thanks in advance.

    I suppose i have got a work around for this. 
    In case you have such requirements, Instead of Using a Dounut Charts, you can use Gauge Chart.
    Firstly select the inner area of the gauge and from the options remove the labels, minor & major tick marks. Secondly from gauge properties remove the Frame of the Gauge. Now U will be left over with only the "Range" part of the Gauge chart.You can add
    number of ranges to get the 360 Dounut look. You can specify each "Range" start & end range with hard code values or expression . Playing with the Range general properties, you can achieve the mentioned customization. You can add a Label to the Gauge and
    place it in the center 

  • Animated Donut Chart

    My boss wants to have a donut chart with six wedges. When one
    of the wedges is clicked it will rotate the whole donut, with the
    clicked wedge to rest at a 3 o'clock stop position. The wedge will
    then pull out rotate 180 degrees and a legend of boxes associated
    with that particular wedge will show in some as yet undetermined
    transition and stop. Then when another wedge is clicked the out
    wedge will go back to position and the donut will rotate again
    until the selected wedge is at the 3 o'clock stop position, pull
    out and... At completion of the flash it will be integrated into a
    power point presentation.
    I was just starting to get used to multiple layers and
    actions when I used flash about 8 years ago, but I haven't touched
    it since. I am a basic user in flash animation at best and
    currently I am using Flash MX in conjunction with the whole MX
    suite. I spent hours just trying to rotate the donut and pull the
    wedge out and rotate that without success. One question I have at
    this point is why when I right click on the timeline and choose
    Create Motion Tween, sometimes I get a dashed line instead of the
    Arrow and the objects do not animate correctly? Secondly how is the
    best way to tie in the actions to clicking the wedges (action
    script)? I am hoping I don't need to create library images of every
    position of the donut (i.e. one whole, one with the blue wedge out,
    one with the purple wedge out).
    Any help to get this project going would be of great help and
    if this goes well I will have many more projects to do
    .

    first question
    i had this problem not long a go
    hopefully this will help
    make sure each different element is on a different layer
    if you have two different things it wont work
    also the elements sometimes have to be broken apart and don't
    include the last keyFrame in the selection to be given the tween or
    it won't work either
    i find selecting the frames and then applying the tween by
    going to the properties panel and changing the Tween to motion
    easier
    it takes a while to get used to it and it can be frustrating
    if it doesn't work
    second question
    you can use both but actionScript is probably easier
    either leave them as moveClips and add and onPress event in
    the actionscipt of the frame(important!)
    or make them buttons and put the animation on the down part
    hopefully this will help you
    em

  • How can I show the chart in forms?

    Dear all:
    I want to create a line chart. I use the chart wizard and it is successful to create the chart. But, it can't show the chart when I run the form. How can I show the chart in form6i?
    Besides, I see a document that refer to 'OG.pll'.
    I can't find the OG.pll in form6i. Do I need 'OG.pll' to show the chart when I run the form? Thank you very much!!

    Hi Carlos,
    You can try to create a code node for check which signature to print.
    In global variable declare a variable ie named g_sign type TDOBNAME.
    Then pass this var to name of graphics &g_sign&
    please check and reply.
    regards,

  • Problem with field GL Account is that it shows concatenated Chart of Accoun

    Hello . Please help me. We have sap BI olap universe . problem with field GL Account is that it shows concatenated Chart of Accounts. But user want to trim the chart of account and show only account in list of values in webi report.
    So What code I can put in Universe to remove this " 9000/" WHICH IS Chart of acct from GL Account
    example List of values shows
    9000/99030
    9000/99070
    I want to show as below
    99030
    99070
    I tried replace function in universe it does not work. Pls help.
    Thanks
    soniya

    Hi,
    You can do it in Web Intelligence using the function Right().
    Depending on the SAP BW version you have it is possible to build such calculated expression in universe on uniquename or name:
    <EXPRESSION>RIGHT[0CALMONTH].currentmember.uniquename,5)</EXPRESSION>
    OR
    <EXPRESSION>RIGHT([0CALMONTH].currentmember.name,5)</EXPRESSION>
    You have to replace 0CALMONTH by the unique definition of GL Accounts and you also need to use the object referencing GL Accounts in your query in addtion to the calculated expression.
    Regatds
    Didier

  • Charting Query: How to show detailed chart when clicked

    Hi , I have a flash chart that shows monthly summary values . When user clicks on a bar ( say for month of JAN), I want to show another chart based on data for JAN only. I am trying to figure out how to show my detail chart when user clicks on a summary bar.
    Can someone advise how can I pass value from parent chart to child chart?
    Thanks
    Aali
    Edited by: aali on 02-Feb-2010 00:30

    Hi Aali,
    Create 2 pages, one for summary the other for detailed (assuming P1 & P2). The query for your first chart needs to link to the second including a month value. It might look something like this:
    select 'f?p=&APP_ID.:2:'||:app_session||'::::P2_MONTH:'||MONTH||':' link, MONTH  label, SUM(SALES) value1
    from TBL_DETAILS
    group by MONTH
    -- :2: is the page you're linking to (detailed chart)
    -- P2_MONTH should be a hidden item on that page to store the month value
    -- MONTH is the value to be passed...this could be some substr(date_col, 4,6) or somethingCreate your Hidden P2_MONTH item making sure it is NOT Hidden and Protected. Page 2 query something like:
    select null link, DAY label, SUM(SALES) value1, SUM(COSTS) value2, COUNT(STAFF) value3
    from TBL_DETAILS
    where MONTH = :P2_MONTH
    group by DAYI don't have info on your tables though so hopefully this is helps.
    Mike

  • NPE when rendering donut chart

    Hi --
    We have a report that looks fine when generated as HTML but fails with the below exception trace when generating PDF.
    I traced this to the birt source code. In PageDeviceRender.drawImage(), when it throws the NPE, it logs the exception and then just ignores it. Our application doesn't know that it has failed!
    The page being rendered includes a "donut chart" and perhaps that is the issue?
    Thanks,
    Dan
    May 29, 2015 10:45:04 AM org.eclipse.birt.report.engine.layout.emitter.PageDeviceRender log
    WARNING: null
    java.lang.NullPointerException
    at java.awt.geom.Path2D$Float.<init>(Path2D.java:232)
    at java.awt.geom.GeneralPath.<init>(GeneralPath.java:105)
    at org.apache.batik.bridge.SVGClipPathElementBridge.createClip(Unknown Source)
    at org.apache.batik.bridge.CSSUtilities.convertClipPath(Unknown Source)
    at org.apache.batik.bridge.AbstractGraphicsNodeBridge.buildGraphicsNode(Unknown Source)
    at org.apache.batik.bridge.GVTBuilder.buildGraphicsNode(Unknown Source)
    at org.apache.batik.bridge.GVTBuilder.buildComposite(Unknown Source)
    at org.apache.batik.bridge.GVTBuilder.buildGraphicsNode(Unknown Source)
    at org.apache.batik.bridge.GVTBuilder.buildComposite(Unknown Source)
    at org.apache.batik.bridge.GVTBuilder.build(Unknown Source)
    at org.apache.batik.transcoder.SVGAbstractTranscoder.transcode(Unknown Source)
    at org.apache.batik.transcoder.print.PrintTranscoder.transcode(Unknown Source)
    at org.apache.batik.transcoder.XMLAbstractTranscoder.transcode(Unknown Source)
    at org.apache.batik.transcoder.SVGAbstractTranscoder.transcode(Unknown Source)
    at org.apache.batik.transcoder.print.PrintTranscoder.print(Unknown Source)
    at org.eclipse.birt.report.engine.emitter.pdf.PDFPage.transSVG(PDFPage.java:769)
    at org.eclipse.birt.report.engine.emitter.pdf.PDFPage.generateTemplateFromSVG(PDFPage.java:744)
    at org.eclipse.birt.report.engine.emitter.pdf.PDFPage.drawImage(PDFPage.java:244)
    at org.eclipse.birt.report.engine.layout.emitter.AbstractPage.drawImage(AbstractPage.java:76)

    There is something some what strange happening here I think.
    If I change your doughnut chat to PNG instead of SVG it renders to PDF properly.
    If I change it to a different type such as bar and SVG it renders to PDF propelry.
    If I then recreate a doughnut chart after switching back from a bar chart it renders to PDF properly.
    This leads me to believe there is a very particular setting you are applying to the doughnut chart that is causing the issue when it's SVG.
    To dig deeper, you should recreate the doughnut chart by adding each setting 1 at a time then testing to PDF.
    As soon as the error happens again, reverse the setting. If it then runs properly, you will have isolated the specific settings causing the issue.

  • Firefox cannot show ext charting .

    Hi team,
    I am using ext net charting into my MVC PROJECT,when debugging (tool:VS 2013), only firefox cannot show the charting, IE and chrome run okay. could you advise it?
    thanks in advance.
    part coding as below:
    // I put the chart into jquery portlet , only portlet can be showed, but the chart which should be put into content of the portlet cannot be presented.
    <div id="effect4" style="display:none" class="portlet">
    <div class="portlet-header">Table 4</div>
    <div class="portlet-content">
    // BELOW IS THE CHART
    @(X.Panel()
    .Title("Column Chart")
    .Layout(LayoutType.Fit)
    .Width(450)
    .MinWidth(100)
    .MinHeight(70)
    .Height(250)
    .Items(
    X.Chart()
    .ID("Chart5")
    .Shadow(true)
    .StyleSpec("background:#fff;")
    .Animate(true)
    .Store(X.Store()
    .Data(Model)
    .Model(X.Model()
    .Fields(
    X.ModelField().Name("Name"),
    X.ModelField().Name("Data1")
    .Proxy(X.AjaxProxy()
    .Url(Url.Action("GetData"))
    .Reader(X.JsonReader().Root("data"))
    .Axes(
    X.NumericAxis()
    .Fields("Data1")
    .Grid(true)
    .Title("Number of Hits")
    .Minimum(0)
    .Label(X.AxisLabel()
    .Renderer(r => r.Handler = "return Ext.util.Format.number(value, '0,0');")
    X.CategoryAxis()
    .Position(Position.Bottom)
    .Fields("Name")
    //.Title("Month of the Year")
    .Series(X.ColumnSeries()
    .Axis(Position.Left)
    .Highlight(true)
    .XField("Name")
    .YField("Data1")
    .Tips(X.ChartTip()
    .TrackMouse(true)
    .Width(140)
    .Height(28)
    .Renderer(r => r.Handler = "this.setTitle(storeItem.get('Name') + ': ' + storeItem.get('Data1'));")
    .Label(X.SeriesLabel()
    .Display(SeriesLabelDisplay.InsideEnd)
    .Field(new[] { "Data1" })
    .Orientation(Orientation.Horizontal)
    .Color("#333")
    .TextAnchor("middle")
    .Renderer(r => r.Handler = "return Ext.util.Format.number(value, '0');")
    // CHART END
    </div>
    </div>

    the page showed this.

  • SSRS show trend chart over column chart per series groups

    Need help in designing following report in SSRS, where I have a chart report with 2 category grouping fields and 1 series group field (as with category grouping, the reason being, i need to show columns in group of 4 joined together based on their grouping
    on top) .
    Below are my queries
    1. how to show my category grouping values on top of chart (showing group in different color) and series grouping values on bottom of chart (under each bar)
    2. I need to show trend line over each series group data.
    For example, First category group is over hotel name, second category group is over room type (deluxe, executive & suite) and one Series group over week number (for a month report), and the chart value is total occupancy (per hotel per room type per week
    number). Now for point 1, Hotel name and room type needs to be on top of the column (total occupancy) chart, where a week iteration number (1,2,3,4 for a month) at the bottom of the chart under every column.
    And for point 2, I need to show trend line per room per week occupancy was improved or not.
    Regards, Sujay

    Hi Sujay,
    According to your description, you want to display the two category group values at the top of the total occupancy value. Also you want to create a trend line over series values.
    For your first requirement, you can specify the Label data as a combination of two category group values and total occupancy values. Then change the location of series group value legend. Please refer to below screenshot.
    For your second requirement, you can add additional total occupancy values to the Chart Data panel, then change the chart type as Smooth Line.
    If you have any question, please feel free to ask.
    Best regards,
    Qiuyun Yu
    Qiuyun Yu
    TechNet Community Support

  • Programitically creating column series to flex chart not showing the chart

    I want to create n number of series dynamically when i run my
    application.
    where n can be any value it depends on the data which i
    retrieve from database. below i pasted the example
    ( in this example i have taken n = 4 i.e., CountMax=4 if i
    change the CountMax=6 then it should generate 6series dynamically
    after calculating the values. ). just copy the below code and paste
    it in Flex builder and run the application.
    in this example i am facing problem, chart series are not
    showing. i dont know the reason why its not showing, if anyone got
    the solutions for the problem please let me know. my actual
    requirement is to retrieve data from Salesforce account and want to
    populate the arraylist then display the chart.
    <?xml version="1.0"?>
    <!-- Example showing using mx:LineSeries vs using AS to
    create chart series programmatically -->
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    creationComplete="drawChart()" layout="absolute">
    <mx:Script>
    <![CDATA[
    import mx.controls.Alert;
    import mx.charts.series.ColumnSeries;
    import mx.charts.series.LineSeries;
    import mx.collections.ArrayCollection;
    [Bindable]
    public var categoryArray:ArrayCollection = new
    ArrayCollection();
    [Bindable]
    public var sArray:ArrayCollection = new ArrayCollection();
    public function drawChart():void
    var histMax:int = 25;
    var histMin:int = 5;
    var countMax:int = 6;
    var tmpArr:Array = new Array();
    categoryArray.removeAll();
    for(var n:int = 0; n < 10; n++)
    tmpArr[n] = histMin + Math.round((2 * n) / 20 * (histMax -
    histMin));
    categoryArray.addItem({data:tmpArr[n]});
    // Add a series to the chart with the x-values and y-values
    // from the arrays and set the series type to a column chart
    for(var chartSeries:int = 0; chartSeries < countMax;
    chartSeries++)
    var tmpseries:Array = new Array(10);
    for(var i:int = 1; i < 10; i++)
    tmpseries = 3 * Math.random();
    var cs:ColumnSeries = new ColumnSeries();
    columnchart1.series.join( = [cs];
    sArray.addItem({data:tmpseries});
    //columnchart1.dataProvider = sArray;
    cs = new ColumnSeries();
    cs.dataProvider= sArray;
    cs.displayName = 'Series';
    cs.yField = 'data';
    columnchart1.series[chartSeries] = cs;
    ]]>
    </mx:Script>
    <mx:Panel title="Dynamic Series Adding Sample"
    width="195%" height="90%" layout="absolute">
    <mx:ColumnChart id="columnchart1" height="338"
    width="396" showDataTips="true" type="stacked" x="10" y="0">
    <mx:horizontalAxis>
    <mx:CategoryAxis dataProvider="{categoryArray}"
    categoryField="data"/>
    </mx:horizontalAxis>
    <mx:verticalAxis>
    <mx:LinearAxis baseAtZero="true" maximum="3"
    autoAdjust="true"/>
    </mx:verticalAxis>
    </mx:ColumnChart>
    </mx:Panel>
    </mx:Application>

    <?xml version="1.0"?>
    <!-- Example showing using mx:ColumnSeries vs using AS to
    create chart series programmatically -->
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    creationComplete="drawChart()" layout="absolute">
    <mx:Script>
    <![CDATA[
    import mx.graphics.SolidColor;
    import mx.charts.HitData;
    import mx.controls.Alert;
    import mx.charts.series.ColumnSeries;
    import mx.charts.series.LineSeries;
    import mx.collections.ArrayCollection;
    [Bindable]
    public var categoryArray:ArrayCollection = new
    ArrayCollection();
    public function drawChart():void
    var histMax:int = 25;
    var histMin:int = 5;
    var countMax:int = 3;
    var tmpArr:Array = new Array();
    categoryArray.removeAll();
    for(var n:int = 0; n < 10; n++)
    tmpArr[n] = histMin + Math.round((2 * n) / 20 * (histMax -
    histMin));
    categoryArray.addItem({data:tmpArr[n]});
    var cs:ColumnSeries = new ColumnSeries();
    columnchart1.series = [cs];
    // Add a series to the chart with the x-values and y-values
    // from the arrays and set the series type to a column chart
    for(var chartSeries:int = 0; chartSeries < countMax;
    chartSeries++)
    var tmpseries:Array = new Array(10);
    for(var i:int = 0; i < 10; i++)
    tmpseries
    = 1 * Math.random();
    if(tmpseries > 0.5)
    tmpseries
    = 1;
    else
    tmpseries = 0;
    var testArrCol:ArrayCollection = new ArrayCollection();
    for(var j:int =0; j < 10; j++)
    var m:Number = tmpArr[j];
    var m1:Number = tmpseries[j];
    testArrCol.addItem({mData:m.toString(),nData:m1.toString()});
    cs = new ColumnSeries();
    cs.dataProvider = testArrCol;
    cs.displayName = 'Series' + chartSeries;
    cs.xField = 'mData';
    cs.yField = 'nData';
    columnchart1.series[chartSeries] = cs;
    public function myTipFunction(hitData:HitData):String
    return(ColumnSeries(hitData.element).displayName +" - "+
    hitData.item.mData + "\n" + "Value : "+ hitData.item.nData);
    ]]>
    </mx:Script>
    <mx:Panel title="Dynamic Series Adding Sample" width="98%"
    height="90%" layout="absolute">
    <mx:ColumnChart id="columnchart1" height="338"
    width="396" showDataTips="true" type="stacked" x="10" y="0"
    dataTipFunction="{myTipFunction}">
    <mx:horizontalAxis>
    <mx:CategoryAxis dataProvider="{categoryArray}"
    categoryField="data"/>
    </mx:horizontalAxis>
    <mx:verticalAxisRenderer>
    <mx:AxisRenderer visible="false"/>
    </mx:verticalAxisRenderer>
    </mx:ColumnChart>
    </mx:Panel>
    </mx:Application>

  • Programitically adding column series in flex chart is not showing the chart

    <?xml version="1.0"?>
    <!-- Example showing using mx:LineSeries vs using AS to
    create chart series programmatically -->
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    creationComplete="drawChart()" layout="absolute">
    <mx:Script>
    <![CDATA[
    import mx.controls.Alert;
    import mx.charts.series.ColumnSeries;
    import mx.charts.series.LineSeries;
    import mx.collections.ArrayCollection;
    [Bindable]
    public var categoryArray:ArrayCollection = new
    ArrayCollection();
    [Bindable]
    public var sArray:ArrayCollection = new ArrayCollection();
    public function drawChart():void
    var histMax:int = 25;
    var histMin:int = 5;
    var countMax:int = 6;
    var tmpArr:Array = new Array();
    categoryArray.removeAll();
    for(var n:int = 0; n < 10; n++)
    tmpArr[n] = histMin + Math.round((2 * n) / 20 * (histMax -
    histMin));
    categoryArray.addItem({data:tmpArr[n]});
    // Add a series to the chart with the x-values and y-values
    // from the arrays and set the series type to a column chart
    for(var chartSeries:int = 0; chartSeries < countMax;
    chartSeries++)
    var tmpseries:Array = new Array(10);
    for(var i:int = 1; i < 10; i++)
    tmpseries
    = 3 * Math.random();
    var cs:ColumnSeries = new ColumnSeries();
    columnchart1.series.join( = [cs];
    sArray.addItem({data:tmpseries});
    //columnchart1.dataProvider = sArray;
    cs = new ColumnSeries();
    cs.dataProvider= sArray;
    cs.displayName = 'Series';
    cs.yField = 'data';
    columnchart1.series[chartSeries] = cs;
    ]]>
    </mx:Script>
    <mx:Panel title="Dynamic Series Adding Sample"
    width="195%" height="90%" layout="absolute">
    <mx:ColumnChart id="columnchart1" height="338"
    width="396" showDataTips="true" type="stacked" x="10" y="0">
    <mx:horizontalAxis>
    <mx:CategoryAxis dataProvider="{categoryArray}"
    categoryField="data"/>
    </mx:horizontalAxis>
    <mx:verticalAxis>
    <mx:LinearAxis baseAtZero="true" maximum="3"
    autoAdjust="true"/>
    </mx:verticalAxis>
    </mx:ColumnChart>
    </mx:Panel>
    </mx:Application>

    <?xml version="1.0"?>
    <!-- Example showing using mx:ColumnSeries vs using AS to
    create chart series programmatically -->
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    creationComplete="drawChart()" layout="absolute">
    <mx:Script>
    <![CDATA[
    import mx.graphics.SolidColor;
    import mx.charts.HitData;
    import mx.controls.Alert;
    import mx.charts.series.ColumnSeries;
    import mx.charts.series.LineSeries;
    import mx.collections.ArrayCollection;
    [Bindable]
    public var categoryArray:ArrayCollection = new
    ArrayCollection();
    public function drawChart():void
    var histMax:int = 25;
    var histMin:int = 5;
    var countMax:int = 3;
    var tmpArr:Array = new Array();
    categoryArray.removeAll();
    for(var n:int = 0; n < 10; n++)
    tmpArr[n] = histMin + Math.round((2 * n) / 20 * (histMax -
    histMin));
    categoryArray.addItem({data:tmpArr[n]});
    var cs:ColumnSeries = new ColumnSeries();
    columnchart1.series = [cs];
    // Add a series to the chart with the x-values and y-values
    // from the arrays and set the series type to a column chart
    for(var chartSeries:int = 0; chartSeries < countMax;
    chartSeries++)
    var tmpseries:Array = new Array(10);
    for(var i:int = 0; i < 10; i++)
    tmpseries
    = 1 * Math.random();
    if(tmpseries > 0.5)
    tmpseries
    = 1;
    else
    tmpseries = 0;
    var testArrCol:ArrayCollection = new ArrayCollection();
    for(var j:int =0; j < 10; j++)
    var m:Number = tmpArr[j];
    var m1:Number = tmpseries[j];
    testArrCol.addItem({mData:m.toString(),nData:m1.toString()});
    cs = new ColumnSeries();
    cs.dataProvider = testArrCol;
    cs.displayName = 'Series' + chartSeries;
    cs.xField = 'mData';
    cs.yField = 'nData';
    columnchart1.series[chartSeries] = cs;
    public function myTipFunction(hitData:HitData):String
    return(ColumnSeries(hitData.element).displayName +" - "+
    hitData.item.mData + "\n" + "Value : "+ hitData.item.nData);
    ]]>
    </mx:Script>
    <mx:Panel title="Dynamic Series Adding Sample" width="98%"
    height="90%" layout="absolute">
    <mx:ColumnChart id="columnchart1" height="338"
    width="396" showDataTips="true" type="stacked" x="10" y="0"
    dataTipFunction="{myTipFunction}">
    <mx:horizontalAxis>
    <mx:CategoryAxis dataProvider="{categoryArray}"
    categoryField="data"/>
    </mx:horizontalAxis>
    <mx:verticalAxisRenderer>
    <mx:AxisRenderer visible="false"/>
    </mx:verticalAxisRenderer>
    </mx:ColumnChart>
    </mx:Panel>
    </mx:Application>

  • How to show pie chart in Oracle Map?

    I created predefined theme with pie chart style using MapBuilder. When I requested map using XML map request, the pie chart are shown with background and base map behind. Unfortunately, I tried to use Oracle Maps JavaScript Client API and it showed only background with base map behind.
    I’m using this code
    themebasedfoi = new MVThemeBasedFOI('themebasedfoi1','geoadmin.pie_province ');
    themebasedfoi.setBringToTopOnMouseOver(true);
    mapview.addThemeBasedFOI(themebasedfoi);
    geoadmin is my username and pie_province is my pie chart predefined theme
    Sorry for my English
    Many thanks
    581554

    Hi
    You can create chart by chart wizard in layout model in report 6i.
    1. Create Query in data model
    2. Go Layout model and right click
    3. Select Chart Wizard then select Chart type
    4. Select Axis (X axis column and Y axis column)
    5. Choose your chart placement
    PS

  • EM failed to show any charts on home screen with "Unhandled exception..."

    Hello,
    I have a 11gr2 2-node RAC on Linux environment. At this time, emctl status dbconsole shows it's up and running. But upon logging in, the main page give error
    "Unhandled exception during generation of chart Host CPU.
    1. java.lang.Exception: Invalid BoundDataSource: no class, method or dataSource provided.
    2. at oracle.sysman.emSDK.chart.EmChartBoundDataSourceBean.initDataSource(EmChartBoundDataSourceBean.java:98)"
    Looking at the emoms.trc file, here is some more errors:
    2011-09-22 14:15:48,218 [EMUI_14_15_48_/console/rac/racSitemap] ERROR db.rac initProblemServices.2011 - Failed to determine problem services: ORA-20206: Target does not exist: ORCL:rac_database
    ORA-06512: at "SYSMAN.MGMT_TARGET", line 571
    ORA-06512: at "SYSMAN.EMD_RAC", line 2550
    ORA-06512: at "SYSMAN.EMD_RAC", line 2474
    ORA-06512: at line 1
    2011-09-22 14:15:48,226 [EMUI_14_15_48_/console/rac/racSitemap] ERROR db.rac initComps.1507 - java.sql.SQLException: ORA-20206:
    ORA-06512: at "SYSMAN.EMD_MNTR_HOST", line 576
    ORA-01403: no data found
    ORA-06512: at line 1
    java.sql.SQLException: ORA-20206:
    ORA-06512: at "SYSMAN.EMD_MNTR_HOST", line 576
    ORA-01403: no data found
    ORA-06512: at line 1
    2011-09-22 14:15:48,375 [EMUI_14_15_48_/console/rac/racSitemap] ERROR chart.EmChartBean constructLayout.759 - java.lang.Exception: Invalid BoundDataSource: no class, method or dataSource provided.
    2011-09-22 14:15:48,379 [EMUI_14_15_48_/console/rac/racSitemap] ERROR chart.EmChartBean constructLayout.759 - java.lang.Exception: Invalid BoundDataSource: no class, method or dataSource provided.
    2011-09-22 14:16:48,136 [MetricCollector:RACHOMETAB_THREAD600:60] ERROR rt.RacMetricCollectorTarget _getAllData.278 - java.lang.NullPointerException
    java.lang.NullPointerException
    Any pointers here?
    Thanks,

    Also, i did some research on the error "unhandled exception" and it suggests to apply patch 9935898. Upon running opatch apply, it gives the following...
    Oracle Home : /u01/app/oracle/product/11.2.0/dbhome_1
    Central Inventory : /u01/app/oraInventory
    from : /etc/oraInst.loc
    OPatch version : 11.2.0.1.5
    OUI version : 11.2.0.1.0
    OUI location : /u01/app/oracle/product/11.2.0/dbhome_1/oui
    Log file location : /u01/app/oracle/product/11.2.0/dbhome_1/cfgtoollogs/opatch/opatch2011-09-22_14-31-53PM.log
    Patch history file: /u01/app/oracle/product/11.2.0/dbhome_1/cfgtoollogs/opatch/opatch_history.txt
    ApplySession applying interim patch '9935898' to OH '/u01/app/oracle/product/11.2.0/dbhome_1'
    Running prerequisite checks...
    Prerequisite check "CheckApplicable" failed.
    The details are:
    Patch 9935898: Required component(s) missing : [ oracle.sysman.oms.core, 11.1.0.1.0 ]
    ApplySession failed during prerequisite checks: Prerequisite check "CheckApplicable" failed.
    System intact, OPatch will not attempt to restore the system
    OPatch failed with error code 74

  • Stocks Application Will not Show Most Charts - Any Fix?

    Hello,
    My Stocks app comes up with the message "Error Retrieving Chart" most of the time when I change to a different chart time scale.
    Anyone have any ideas on a fix?
    Thanks!

    If you mean CFX.UN.TO, that stock will show only 1 week or 1 day charts - all other time frames give "error retrieving" message. Since all other stocks retrieve all time frames, the problem is due to the data not being available from the source, not the app in the iPhone. If you go to the Yahoo source (touch the "Y!" in the lower left corner), the data is not available there either.

  • Show one chart in different web site

    I am creating a web site that will show information regarding some web sites I have in Azure and was wondering if there is anyway to show just one chart in that separate web page. IFRAMES are allowed if needed.
    Thanks.
    Gary A. Bushey

    Hi Gary - can you clarify what Application Insights version you're using - are you using AI in Azure?
    Application Insights team is hiring: https://careers.microsoft.com/jobdetails.aspx?jid=166735. Interested? Please email your resume to albulank at microsoft.com.

Maybe you are looking for

  • Office Web Apps deploy certificate error

    IIS Using Domain Certificate, when access "https://fqdn/hosting/discovery"  with certificate error.  Office web apps using same CA with Front End Server. new web farm with this new certificate name. Any suggest? Thanks.

  • Bad quality when play mov or mp4

    I want to play mov or mp4 by quicktime. In my laptop it play well but in my another computer the quality for video is very bad! Following is the features of that computer: Windows XP Pro SP2 VIA C7 Processor 1500MHZ 512M RAM Graphics card: VIA/S3G Un

  • Add a form (based on query) to a form (based on table)

    I have a normal form based on a table. I want to put in a little form in a region of this first form that is based on a query. They have one field in common. How can I do this? Elsie

  • TM stuck on preparing [number] items

    Hey. My Time Machine usually works fine with my MBP, OS X 10.6.3 and my WD MyStudio harddrive. But for the last couple of days TM has been stuck in "preparing files" mode, where it's supposed to prepare all files before it makes the back up. It's bee

  • Information on web.xml

    Hi, In one of the example my web.xml looks like this <servlet>      <servlet-name>action</servlet-name>       <servlet-class>com.sample.MyServlet</servlet-class>      <init-param>         <param-name>debug</param-name>         <param-value>2</param-v