SVG Multi Graph/Chart with line and bar

I have a request for a "Multi-Graph-Chart"
showing both - line chart and
- bar-chart with respective data.
Can you provide for the sourcecode, which is behind the SVG chart wizard enabling us to develop an own/individual SVG chart ?
pls kindly advise.
Bernhard
nb. I mailed u this request already - but thought this might be of interest to others as well.

Marc
I would support this addition to functionality. I currently have a client who has a requirement for complex charting in HTMLDB, and I am looking at the SVG packages in HTMLDB, ie: WWV_FLOW_SVG, but as you say they are not independent APIs and rely heaviliy on the application's metadata. This is a shame as I could quite easily handle a nice PL/SQL API that would let me create custom SVG, instead of generating the SVG manually and embedding that in the page.
Cheers
Ben

Similar Messages

  • Seek 2D Line and Bar Chart Graphs HOWTO

    Can anyone share with me on where I could obtain/teach
    me how to write 2D Line and Bar Chart Graphs ?
    I like the class/program to be called from java code and not
    from command prompt to plot points or bar graphs.
    Please, no vendor recommendations.
    I dont have the $ to purchase.
    Any help is appreciated.
    Thanks

    I checked the web site of JFreeChart and its document
    says to get premium service, it requires $.
    I dont really have the $ to purchase that software.
    It's a vendor product!Just to clarify, JFreeChart is free software, it is licensed under the GNU LGPL. You get the complete source code, including lots of demos, Javadoc HTML pages, an install document in PDF format, and access to the support forum for absolutely no charge. You don't have to pay a fee to unlock special features in the software, everything is there in the free download.
    As a way of funding the project, we sell a JFreeChart Developer Guide which includes a lot more information about using JFreeChart. But it is only the documentation we sell, not the software.
    Hope that helps,
    Dave Gilbert
    JFreeChart Project Leader
    http://www.object-refinery.com/jfreechart/index.html

  • Remove shades behind lines and bars in Graphs

    Hello there, new here on the forum.
    I'm using obiee 11.
    Is there a way to remove the grey shades behind lines and bars in graphs?
    Both curious to know wether that's possible in one graph or make it standard for all graphs.
    Thanx!

    Try this
    Removing drop-shadow effect on graphs
    By default, whenever a chart is created, there is a drop-shadow effect on it. This property makes it difficult to read some of the
    charts. In order to turn it off this property, edit the file dvt-graph-skin.xml from the following location on your
    installation.
    \InstallHome\Oracle_BI1\bifoundation\web\msgdb\s_blafp\viewui\chart
    Edit the <Graph> tag, add the attribute visualEffects="NONE". (Do not remove the rest of the contents in the file). After
    editing, the contents should look like this.
    <Graph visualEffects="NONE">
    <SliceLabel>
    <!-- decimalDigitUsed is false here so that non-percentage pie slices do not pick up this value
    The DVTChartProcessor sets decimalDigitUsed to true if this is a percentage pie slice -->
    <ViewFormat decimalDigit="2" decimalDigitUsed="false"/>
    </SliceLabel>
    </Graph>
    Save the file.
    Richard Chan
    Rittman Mead Oceania

  • CRXIR2 - A chart with horizontal and vertical lines?

    Good morning,
    Is it possible to create a chart with horizontal and vertical lines?
    I have a chart where the Y-Axis show the percentage and the X-Axis shows a timeline.
    The horizontal line shows the percentage for the points in time.
    Now I would like to mark some special points in time on the X-Axis with a straight vertical line.
    Is there a way to do that?
    Thank you very much in advance
    Christoph

    Hello Usama,
    unfortunatelly I couldn't find that that feature in the basic chart features.
    Also the webpage www.3DGraphics.com doesn't exist and I had no luck to google for 3DGraphics.
    It's a little strange, that it seems to be possible to draw one additional horizontal line with the basic features, but no additional vertical line.
    for example.
    If the main chart would be y=3x+1
    It seems to be possible to draw e.g. y=5
    But I see no chance to draw x=5
    In addition, to make it a little more complicated, I would need to have that dynamically, based on the values of a sql-statement.
    thx
    Christoph

  • Stacked Column Chart with Line

    Hi
    I need to Create a Stacked Column Chart representing 1 set of measures with a Line representing a target.
    I want to create a chart where the Sales Amount in different Sectors is represented as a stacked column and the targets are represenetd as a line.
    Currently BO supports Bar charts with line.
    Does anyone know if such a feature will be supported in the new release of BO XI. Also is it possible to raise a request for this feature to be included in the new release
    TIA

    We are also a 30 persons department (Marketing) using in the same BO charts (since 2001) quarters made of :
    - first single column ( 2014 billing in a query1)
    - second stacked column (2015 billing +2015  firm orders backlog, 2015 frame orders backlog in a query2)
    - third single column (2016 backlog in a query3)
    and a superposed budget line
    the first and the third column are offset respectively to the left and right of the second column by blank and dummy single columns of data called ghost1 and ghost2. 2016 is still empty here but the principle is clear.
    This principle is used liberally in 200 + different reports. Also with transparent columns and other complicated, but graphically intuitive reports.
    How can we continue to use this very natural representation of our several hundred million $ business. I have not found the mixed single column, stack column and line option in BO XI 3.1 . Please re-develop one asap if necessary. SAP should please please report asap on the recovery timeline of this lost feature. The switch from Visual Basic development to Java development should not lead to regression of any feature.
    Regards.
    Jean-Marc Imbert
    Marketing manager

  • How to create a chart with x and y input arrays

    I am trying to create a chart that receives chunks of data from a while loop.  I know how to create a chart in order to append new data points to those points already in the display, but a regular chart doesn't let me specify the x axis data points.  Is there a way to create a chart with x and y array inputs?
    Thanx,
    Tom

    It's called an XY Graph. If you need an XY graph to behave like a chart, look at the shipping example called XY Chart.

  • SSRS 2008: how to show an empty chart with legend and x and y axis when no data available

    Hi,
    I am using SSRS 2008, I generated one chart in report designer with the data from Analysis Services (Cube).
    According to the dataset, there is no data returned when I run the query. so when I preview the chart, there is nothing but "no data available" showing on the chart.
    Here I want to know is there any possible to show an empty chart with legend and x and y axis?
    If it is possible, can you tell me how can I make it?
    Best Regards.
    Connie Zhu

    Hi,
    When there is no data, the chart displays the message "no data available". But using a little work around, you can display an empty chart.
    Please find the below steps given to achieve this
    1. Create a new dataset using TSQL to return 1 row of data having the category field and value field set to 0. Add the fields that are necessary for the category fields, series fields and datafields.
       A simple example would be like
       SELECT 'abc' as Category, 0 as Amount
    2. Add a new chart, set the category field to 'Category' and set the data field to Amount from above dataset created in step 1.
    3. In the new chart, right click the category axis and select axis properties, Click on the labels tab, check on
    'Hide axis labels' and then click ok
    4. Now set the Visibility property of both the charts depending on the rows returned from your main dataset
       a. click on your main chart and set its Hidden property to :
    =iif(CountRows("MainDataSet"),false,true) 
       b. click on the new blank chart added and set its Hidden proprety to (the opposite) :
    =iif(CountRows("MainDataSet"),true,false) 
       Note : Please change the dataset name in above expression "MainDataset" to the name of your chart's dataset
    5. Resize the new chart to the same size as your main chart, then position the new chart on the place as the main chart.
       (Note : You can set the position of new chart to be same by copying the location property from the main chart) 
    6. Now run and observe the result. When there are no rows returned by your main dataset, the new chart (the blank chart) should be displayed.
    I've added a working sample of this kind of a report
    here.
    Hope this helps. Please feel free to discuss if you have any questions.
    Please click "Mark as Answer" if this resolves your problem or "Vote as Helpful" if you find it helpful.
    BH

  • How to plot line and bar chart in one graph

    i have one graph, but in this graph i want to plot line or bar chart using radio button selection.
    can i do that...

    You must have 2 data arrays or plots to get this. Make sure your plot legend is visible. Drag the plot legend vertical borders to view both plots. Select one of the plot to be bar plot (See the attachment)
    Attachments:
    BarPlots.PNG ‏14 KB

  • OBIEE Area Chart with Line Graph

    Can you create an Area and Line Graph together in one chart with OBIEE (rather than with the bar graph and line chart combo)??

    Did you mean a Trendline? If that is the case, right click on any of the areas in the area chart and select Trendlines from the context menu.

  • Combination line and bar chart ?

    Hi,
    I would like to show a chart with 4 rows as bar and 1 row as line chart basically a combination chart?
    Is it possible in keynote/
    Thanks.
    SG

    Insert two charts on the slide, change one to line and keep the other as bar, change the colour so the line can be easily seen.

  • Combined charts (line and bar)

    Where in Apex do we set which series is "Line" and which one is "Bar"? I saw the examples listed in the Anychart website but I'm getting the data as a result of SQL command in Apex so I don't have control of the series tags within the data section. Help please.
    Ana

    You may use pl/sql to generate JavaScript to create chart object and to generate xml for the chart.
    Create a Dynamic PL/SQL region in the page.
    copy following code to the source code for PL/SQL
    DECLARE
    chartData varchar2 (10000);
    BEGIN
    chartData:='<anychart>
    <charts>
    <chart>
    <data>
    <series name="Year 2003" type="Bar">
    <point name = "A" y="2166"/>
    <point name = "B" y="630"/>
    <point name = "C" y="1662"/>
    <point name = "D" y="1862"/>
    <point name = "E" y="750"/>
    <point name = "F" y="300"/>
    </series>
    <series name="Year 2000" type="Line">
    <point name = "A" y="1160"/>
    <point name = "B" y="930"/>
    <point name = "C" y="1162"/>
    <point name = "D" y="1362"/>
    <point name = "E" y="350"/>
    <point name = "F" y="300"/>
    </series>
    </data>
    </chart>
    </charts>
    </anychart>';
    HTP.p
    <div id="combiChart" >
    <script type="text/javascript" language="javascript">
        var chart = new AnyChart("/i/flashchart/swf/AnyChart.swf");
        chart.width = "500";
        chart.height = "300";
        var cData=''' || chartData  || ''';
        chart.setData(cData);      
        chart.write("combiChart");
        </script>
    END;After pasting to the code window you may be required to remove any carriage returns within above xml data. I put carriage return for clarity of xml structure.
    For further customization refer to Anychart xml reference.

  • Scatter chart with lines between points

    In one of our Deski reports, we have a "funnel" chart.  This is essentially achieved with a scatter plot graph with lines drawn between the scatter points to resemble a line chart.  This allows us to draw odd lines, such as a funnels that don't really look like funnels.    (Picture drawing a concentric circle for another visualization of what we are trying to accomplish).  So our problem is that we need to convert this Deski Report to Webi in order to move to BusinessObjects 4.1.  But we cannot seem to achieve this in Webi because the scatter plot in Webi does not draw lines between the points.  Any ideas out there?  Can this be done in a current BusinessObjects tool?

    Hi,
    We have the same problem, did you solve your problem and how?
    thanks in advanced

  • Is it possible to have a combination graph chart with a stacked vertical br

    I have the following XML data :
    - <ROWSET>
    - <ROW>
    <Z_CUSTOMER>ACME</Z_CUSTOMER>
    <Z_REGION>SPAIN</Z_REGION>
    <Z_YEAR>2009</Z_YEAR>
    <Z_MONTH>01</Z_MONTH>
    <Z_SALES>100</Z_SALES>
    <Z_SALES_PREV>50</Z_SALES_PREV>
    <Z_SALES_PREV2>90</Z_SALES_PREV2>
    </ROW>
    - <ROW>
    <Z_CUSTOMER>ACME</Z_CUSTOMER>
    <Z_REGION>SPAIN</Z_REGION>
    <Z_YEAR>2009</Z_YEAR>
    <Z_MONTH>02</Z_MONTH>
    <Z_SALES>300</Z_SALES>
    <Z_SALES_PREV>50</Z_SALES_PREV>
    <Z_SALES_PREV2>40</Z_SALES_PREV2>
    </ROW>
    - <ROW>
    <Z_CUSTOMER>ACME</Z_CUSTOMER>
    <Z_REGION>SPAIN</Z_REGION>
    <Z_YEAR>2009</Z_YEAR>
    <Z_MONTH>03</Z_MONTH>
    <Z_SALES>600</Z_SALES>
    <Z_SALES_PREV>35</Z_SALES_PREV>
    <Z_SALES_PREV2>80</Z_SALES_PREV2>
    </ROW>
    - <ROW>
    <Z_CUSTOMER>ACME</Z_CUSTOMER>
    <Z_REGION>SPAIN</Z_REGION>
    <Z_YEAR>2009</Z_YEAR>
    <Z_MONTH>04</Z_MONTH>
    <Z_SALES>700</Z_SALES>
    <Z_SALES_PREV>350</Z_SALES_PREV>
    <Z_SALES_PREV2>90</Z_SALES_PREV2>
    </ROW>
    - <ROW>
    <Z_CUSTOMER>ACME</Z_CUSTOMER>
    <Z_REGION>FRANCE</Z_REGION>
    <Z_YEAR>2009</Z_YEAR>
    <Z_MONTH>01</Z_MONTH>
    <Z_SALES>100</Z_SALES>
    <Z_SALES_PREV>60</Z_SALES_PREV>
    <Z_SALES_PREV2>70</Z_SALES_PREV2>
    </ROW>
    </ROWSET>
    I have produced a report based on this data which uses a combination graph chart. The sales for the current year are shown as a vertical bar for each month while the previous year and previous year but one are shown as lines. The report produces the correct output but I would like to add an extra feature
    so that the vertical bar for the current year is shown as a stacked vertical bar so that the sales from each region can be seen within the bar rather than the bar just showing total sales. Is this possible byt altering the chart options within the template builder or would it be necessary to write some XSL code to do this ?

    Yes and no, here's an example of stacked bar and area graph.
    chart:
    <Graph stylePath="/oracle/dss/graph/styles/projection.xml" seriesEffect="SE_AUTO_GRADIENT" graphType="LINE_VERT_STACK">
      <LegendArea visible="true" fillColor="#FFFFFF" fillTransparent="false" borderColor="#000000" borderTransparent="false" automaticPlacement="AP_NEVER" position="LAP_RIGHT"/>
      <Title text="Margin Forecast Trending" visible="true" horizontalAlignment="CENTER">
        <GraphFont name="Arial Black" size="16" bold="true" italic="false" underline="false"/>
      </Title>
      <SeriesItems>
        <Series id="0" color="#FFFF00" lineStyle="LS_SOLID"/>
        <Series id="1" color="#0000FF" lineStyle="LS_DASH"/>
        <Series id="2" color="#FF0000" lineStyle="LS_DOTTED"/>
        <Series id="3" color="#00FF00" lineStyle="LS_DASH_DOT"/>
      </SeriesItems>
      <Y1Axis lineWidth="1" lineColor="#DDDDDD" ascending="true" axisLocation="AL_LEFT" visible="true" axisMinAutoScaled="true" axisMaxAutoScaled="true" majorTickStepAutomatic="true">
        <ViewFormat numberType="NUMTYPE_GENERAL" numberTypeUsed="true" decimalDigit="0" decimalSeparatorUsed="true" decimalDigitUsed="true" scaleFactor="SCALEFACTOR_NONE" scaleFactorUsed ="false"/>
      </Y1Axis>
      <LegendText>
        <GraphFont name="Arial Black" size="12" bold="false" italic="false" underline="false"/>
      </LegendText>
      <O1Title text="Forecast as of" visible="true">
        <GraphFont name="Arial Black" size="11" bold="true" italic="false" underline="false"/>
      </O1Title>
      <Y1Title text="Dollars" visible="true">
        <GraphFont name="Arial Black" size="11" bold="true" italic="false" underline="false"/>
      </Y1Title>
      <Y1TickLabel>
        <GraphFont name="Arial Black" size="9" bold="false" italic="false" underline="false"/>
      </Y1TickLabel>
      <O1TickLabel>
        <GraphFont name="Arial Black" size="9" bold="false" italic="false" underline="false"/>
      </O1TickLabel>
      <LocalGridData colCount="{count(xdoxslt:group(.//G_GRAPH|.//G_ZERO_GRAPH[count(//G_GRAPH)=1],  'PFP_DATE'))}" rowCount="4">
        <RowLabels>
          <Label>Margin Plan</Label>
          <Label>Base Fee</Label>
          <Label>Forecast at Completion</Label>
          <Label>Margin Forecast</Label>
        </RowLabels>
        <ColLabels>
          <xsl:for-each select=".//G_GRAPH|.//G_ZERO_GRAPH[$grp_cnt=1]" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
            <Label>
              <xsl:value-of select="PFP_DATE"/>
            </Label>
          </xsl:for-each>
        </ColLabels>
        <DataValues>
          <RowData>
            <xsl:for-each-group select=".//G_GRAPH|.//G_ZERO_GRAPH[$grp_cnt=1]" group-by="PFP_DATE" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
              <Cell>
                <xsl:value-of select="sum(current-group()/MARGIN_PLAN)"/>
              </Cell>
            </xsl:for-each-group>
          </RowData>
          <RowData>
            <xsl:for-each-group select=".//G_GRAPH|.//G_ZERO_GRAPH[$grp_cnt=1]" group-by="PFP_DATE" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
              <Cell>
                <xsl:value-of select="sum(current-group()/BASE_FEE)"/>
              </Cell>
            </xsl:for-each-group>
          </RowData>
          <RowData>
            <xsl:for-each-group select=".//G_GRAPH|.//G_ZERO_GRAPH[$grp_cnt=1]" group-by="PFP_DATE" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
              <Cell>
                <xsl:value-of select="sum(current-group()/FORECAST_AT_COMPLETION)"/>
              </Cell>
            </xsl:for-each-group>
          </RowData>
          <RowData>
            <xsl:for-each-group select=".//G_GRAPH|.//G_ZERO_GRAPH[$grp_cnt=1]" group-by="PFP_DATE" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
              <Cell>
                <xsl:value-of select="sum(current-group()/MARGIN_FORECAST)"/>
              </Cell>
            </xsl:for-each-group>
          </RowData>
        </DataValues>
      </LocalGridData>
    </Graph>

  • IPhone 6 Plus front camera not working or with lines and static?

    My iPhone 6 Plus front camera is having problems. Sometimes it doesn't work at all and the camera app freezes. Sometimes it works fine for a little while and sometimes it shows multi color static or lines.
    I've tried:
    Restoring from phone (without restoring backup)
    Restoring from iTunes (without restoring backup)
    Deleting ispw and re-downloading iOS 8.1.1 then restore
    The phone is less than 2 months old. I noticed it acting weird a week or so after I bought it but thought it was just software. At first it wouldn't work when using the camera app but worked fine using facetime. Now it acts up regardless.
    Any advice or opinions will be much appreciated.

    Nore wrote:
    I have always used the iPhone's LED flashing alert to notify me when I get a call or text message. While I was on iOS 8 Beta 2-4 it was working fine. I did a clean install of the complete iOS 8 release and ever since then, the flash alert doesn't work.
    Sometimes it will work on incoming calls, but will not work on text messages. I've tried soft/hard rebooting, clean wipe and fresh installs, and pretty much anything in between. Now, today I got my 128GB Gold ATT iPhone 6 Plus, and it's the same thing. Updated to iOS 8.1, reset everything/deleted all contents and settings. Both fresh install, and iCloud backups and still no alerts on text messages, but now I get them on calls. I tried my girls ATT 128GB iPhone 6 and she has the same problem too. My old phone was a 64GB iPhone 5S and hers was a 32GB iPhone 5. Everything was good until the official release of iOS 8.
    I've tried searching for related issues, and haven't found anything since 2011 with a quick Google search. Most links just tell you how to turn the flash alert on but no new issues. All of my devices are on iOS 8.1.  I gave my father my 64GB 5S with a clean install and he still has the issue as well. So, that makes my iPhone 6 Plus, my girls iPhone 6 and my fathers iPhone 5S not flashing LED on messages and sometimes calls. There aren't any custom vibrations enabled on any if the devices. Has anyone else experienced this problem? Is it a known bug or am I just not doing something right here? i never had an issue before the iOS 8 release. Any help would be appreciated.
    Are you a developer?  IF so try asking in the developer forum.

  • Stacked Column Chart with Lines

    Requirement:
    User stacked Column chart to display data for defects for 4 departments.
    1 or 2 lines to show baseline for defects(constant).
    Is there anyway that I can do that just like we can create one in Excel?
    (stack a Stacked column chart with a line chart is not a solution.)
    Any advises?
    Thanks,
    Wen

    Hi Wen,
    I realise that you are not going to get this to work with a standard component on its own. I think it might be possible to acheive it with overlaying barcharts and combination charts.
    My assumption is that you are looking for something that has a stack with 3 separate items in it. Two target lines crossing over the stacked chart.
    I will have a look at this to see if I can come up with something. Let me know if this is not your requirement.
    No, I don't work for SAP. I think those that do have the SAP logo beside them.
    Regards
    Alan

Maybe you are looking for