Chart builder grid lines

hello all,
I'm building a graph between 23/2/2005 and 08/03/2005.
my problem is that I get only one grid line in 01/03/2005 and I need grid lines to every day.
tnxs for your help,
shai

Hi,
Has anybody else got the same problem? Do you know a work around??
Please help!!!!
-Swaroop

Similar Messages

  • Line Chart glitch - grid lines thick at certain heights

    The Flex Line Chart control does not display correctly at certain heights.  The gridlines that are supposed to be 1px pin stripes are sometimes displayed up to 100px wide.  This can be demonstrated with 1 line of code
    <mx:LineChart height="33000" x="200" y="0" id="chart_1"  width="100" ></mx:LineChart>
    I also have another small app that uses a timer to demonstrate how as the height increases the gridlines increase from:
    1px to 100px
    then back to 1px
    .... then as the chart's height increases another 7000px the 1px gridlines display correctly
    then it repeats going back to thick, then thin etc... almost a pulsating effect
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600" creationComplete="init();">
        <fx:Script>
            <![CDATA[
                import flash.utils.Timer;
                import flash.events.TimerEvent;
                private var timer:Timer = new Timer(10);
                private function init():void{
                    timer.addEventListener(TimerEvent.TIMER, changeheight);
                    timer.start();
                private function changeheight(event:TimerEvent):void{
                    chart_1.height=chart_1.height+30;
                    lblHeight.text="Chart Height:"+String(chart_1.height)+"px ";
            ]]>
        </fx:Script>
        <mx:LineChart height="33000" x="200" y="0" id="chart_1"  width="100" ></mx:LineChart>   
        <s:Label id="lblHeight"  />
        <s:Button y="80" click="timer.start();" label="Start" />
        <s:Button y="100" click="timer.stop();" label="Stop" />
    </s:Application>

    Are you able to acheive this.?
    PCXML script is used for chart rendering, and with that I think you can't demark the Gridlines.
    The following Xml file gives the definitions for the chart components including gridlines.
    chartviewtemplates.xml
    Which inturn refers to the following js for gridlines
    i think you have to work on the Js here demark the grid lines by default
    <Oracle_BIHome>\web\app\res\b_mozilla\views\chart
    dlggridlineseditor.js
    Before doing any changes take the backup.
    Thanks,
    Vino
    Edited by: Vinodh NK on Oct 22, 2010 3:44 AM

  • How do I add a time stamp to the moving "Major Grid Lines" of a Waveform Chart?

    Hello
    I am using LV 8.5.1
    I am using a Waveform Chart and I have turned on the "Major Grid LInes" using the properties tab of my waveform chart. (properties-->scale->grid lines)
    When the code executes, I want to attach  a time stamp to each moving yellow grid line.
    So as the grid lines move from right to left, there is an associated time stamp for each.
    Can someone help!
    thanks
    J
    Solved!
    Go to Solution.
    Attachments:
    how do I add time to the yellow grid lines.vi ‏16 KB

    hova2010,
    If you right click on your graph and go to X Scale >> Style >> and then choose one of the 3 styles on the far left you shoul see timestamps for those grid lines.
    Ben Sisney
    FlexRIO V&V Engineer
    National Instruments

  • Change Color from grid lines in Flash 2D Line Chart

    Hi,
    does anybody know how to change the color from the grid lines in 2D Line Chart?
    The color is always black (000000), I will use gray (CCCCCC).
    I can use a custom XML. Can you give me an example please???
    Where can I read something about the possible XML-Tags in Custom XML for Charts?
    Best regards
    Simona

    Simona,
    anychart.com has XML reference you can use for the charting engine in APEX.
    Try using custom XML and sticking this inside the grid > values tag:
    <lines color='0xCCCCCC' />- Marco

  • Grid lines on line chart

    Hi,
    I have got a SVG line chart. Even though I disable the grid lines in the SVG chart attributes, the grid lines still show up.
    The values I am getting in the line chart varies from 0.01 to 2.00.
    Can anobody help me to make the grid lines go away??
    Thanks,
    Swaroop

    Hi,
    Has anybody else got the same problem? Do you know a work around??
    Please help!!!!
    -Swaroop

  • Align Grid Lines in chart

    Hi ......
    I am generating a line chart using an xml file...I am setting
    the interval as 250 on X Axis.....
    And I am using a repeated square image as a background.
    Intention is to have that square aligned inside the grid lines.....
    The problem is that the chart data is dynamic... and when the
    no of plottable values are more , then it takes the grid interval
    automatically as 500 and not 250 as the chart gets displayed in the
    same width.........Due to which the grid squares change and the
    alignment to the image gets disturbed.......
    I need to set the width of the chart based on the number of
    values in the xml in such a way that the grid always comes at 250
    and the image is properly aligned in the grid lines......
    Please help me in this regard....
    Or suggest me some other way to achieve the same.....

    I know that I can control the origin of the rulers, but when I change that, the grid lines do not change, which is quite annoying.
    Depends on which version of Illustrator you are using.
    In recent versions turn on global rulers, then change the rulers origin in order to position the grid.

  • Remove grid lines by default in chart view

    Hello,
    I'm working in version 10.1.3.4.1. I've been trying to remove the grid lines from the default chart view. I've read some posts on here and in the blogs about changing the default chart look, but I haven't seen anything specific to grid lines. I think I need to edit the pcxml files located in .../s_oracle10/popbin. I've been messing with these two files:
    - bar.pcxml (this seems to be for horizontal bar charts only)
    - column.pcxml (this seems to be for vertical bar charts only)
    Within <ValueScale> and <CategoryScale> I tried changing the MajorGrid and MinorGrid parameters to values like 'Disabled' and 'False' but this seemed to have no effect. I also tried changing the color from #eeeee to something else but this also seemed to have no effect at all.
    I've replicated whatever changes I've made to the corresponding file in the oc4j directory. I am restarting all services after making my changes. I have been able to get some changes to bar.pcxml and column.pcxml show up in the application. I was able to change the default BarStyle from 'Cylinder' to 'Rectangle' successfully, so I think my process of editing the file, copying it to the corresponding oc4j directory, and then bouncing the services is working.
    Can anyone point me in the right direction for getting all of the grid lines to go away by default? So far I've only tried removing them from bar charts, but ultimately I want them off by default on line charts as well.

    Are you able to acheive this.?
    PCXML script is used for chart rendering, and with that I think you can't demark the Gridlines.
    The following Xml file gives the definitions for the chart components including gridlines.
    chartviewtemplates.xml
    Which inturn refers to the following js for gridlines
    i think you have to work on the Js here demark the grid lines by default
    <Oracle_BIHome>\web\app\res\b_mozilla\views\chart
    dlggridlineseditor.js
    Before doing any changes take the backup.
    Thanks,
    Vino
    Edited by: Vinodh NK on Oct 22, 2010 3:44 AM

  • Line Chart does not display grid lines for x-axis (apex 2.0 / 3.0)

    Hello,
    is there an option to display x-axis grid lines?
    I set up an SVG chart (Line) but only IE displays y-axis grid-lines. I set the "Show Grid Line" - value to "enable"
    Does any body has an idea how I told apex to display x-axis grid lines also.
    Btw: only MS Internet Explorer displays the grid lines, I use firefos 1.5.0.10 -> no grid lines are displayed.
    The table how I create the chart are as follows
    select null link, label, value
    from
    SELECT 1 Value , 1 label FROM dual
    UNION
    SELECT 3 Value , 2 label FROM dual
    UNION
    SELECT 5 Value , 3 label FROM dual
    UNION
    SELECT 2 Value , 4 label FROM dual
    Thank you for helping me !!
    Message was edited by:
    athor

    I changed this and put usage of UTL_FILE into a dynamic PL/SQL. The package will
    compile and work unless you want to create debug information. If yes, then it will raise an
    error message. So, you don't need UTL_FILE execution priviledge from your DBA.
    I opened the package and you may modify it the way that you don't need any public
    synonyms and no UTL_FILE to run it.
    There are so many questions in this forum related to "What is my DBA going to say?" or
    "How is he going to react?". Even for some minor issues. I have myself also seen some
    of similar situations and the only thing I can sey is:
    You got to use that powerfull tool Oracle Database instead of hiding it away from your
    users and developers. Learn how to control it instead of prohibiting access to it! Otherwise,
    it's just a waste of money.
    Denes Kubicek

  • Why do my Waveform Chart Grid Lines Disappear when this runs?

    Hello all
    I have a Waveform Chart that Im using. The charts grid lines are initially set at 1 min intervals...which works fine
    However, after the 1 set of intervals (red grid lines) are reached, there are no further grid lines seen on my chart.
    Can someone tell me how to create a chart with continuous grid lines that scroll?
    thanks
    J
    Attachments:
    JH_waveform_graph_markers[1].vi ‏25 KB

    Hi hova2010,
    Please keep your questions on the same issue to a single thread. Thanks!
    Thank you for choosing National Instruments.
    Aaron Pena
    National Instruments
    Applications Engineer
    http://www.ni.com/support

  • CHART BUILDER ERROR WHEN TRYING TO GENERATE DYNAMIC CHARTS ON A JSP PAGE

    I'm working with J Develop 9.03 on Windows 2000 Professional Edition.
    I'm using the JSP demo files provided with Oracle Chart Builder to generate
    dynamic charts. The user specifies the query parameters, including the date
    range and the query results are returned by means of a line chart (with date on
    the x axis and values on the y axis).
    When trying to compile the project I get the following error messages:
    Error(165,2): class FileOutputStream not found in class _graph
    Error(170,5): class File not found in class _graph
    Error(176,4): exception java.io.IOException is never thrown in the
    corresponding try block
    I checked to see that the chartbuilder library (chartbuilder.jar) files are
    loaded into the project library. It's unusual that the class is not being
    found. I don't understand why. I developed my project using the following steps:
    1. Unzipped Chart Builder installation files into c:\Oraclechartbuilder
    2. Loaded chartbuilder class library
    c:\Oraclechartbuilder\chartbuilder\lib\chartbuilder.jar into J Developer class
    path (by selecting <Project Settings> <Paths> and browsing to the
    chartbuilder.jar file).
    3. Created a new JSP page in J Developer (graph.jsp)
    4. Copied JSP code syntax from the Word Pad demo file and pasted into graph.jsp
    5. Changed the DB connection parameters and static directory location on the
    JSP page.
    6. Compiled the project and received the above errors.
    I would like to know why the classes are not being found and how to fix the problem. Thanks, Jaafar

    Hi mshah101,
    This can happen if the applet is compiled using an higher version of java and the browser is pointing to an older version (even if minor version number is higher)

  • Can grid lines on a XY Graph be made dashes from solid

    I'm using the SPC toolset. When the control limits are plotted (in red) if the control limit is placed over a grid line, the color of the control limit changes becoming much less visible. If I can make the grid lines dashed, at least a portion of the control limits will remain red for visibility. I can find no way to change the grid lines other than color.

    You could try grabbing a screen print of the graph and edit it in photoshop or similar to look the way you want. Then customise the control, paint it transparent and use your image as its background. I have done something similar to make a psychrometric chart (attached)
    Attachments:
    psychrochrt.vi ‏292 KB

  • Help: matrix report grid lines missing for null values only on server side

    Hi,
    I created a matrix report in pdf format. The output in great when run through report builder locally, it renders all necessary details. However, after the report being moved into AS server, the report does not show grid lines for null values.
    It looks to me this has something to do with configurations and hope someone know what needs to be done.
    Any suggestions are greatly appreciated.
    Jimmy

    Thanks for replying.
    DESFORMAT is PDF.
    There should be a fix as I had same issue with same Oracle version at my previous company. DBA fixed the issue on AS server.
    I found your post on 09/28/2010 with a link to patch set: Re: Null value fields disappear  in pdf output format
    We worked out with the work around without install the patch.
    Jimmy
    Edited by: WJHORA on Sep 8, 2011 2:16 PM

  • Chart builder stacked bar fill style pattern

    Does anyone know if chart builder support style pattern in filled area in stacked bar?
    i.e. stacked bar is filled with color, I need also to have line style in it plus the color. The line can be horizontal, vertical, or diagonal.
    Any help, or anyone knows any library that support color with style color ( free or charged ).

    Depending upon your query structure, you can force a zero based centerline by setting the Y-axis ranges dynamically.  I am not working in 11.5.3 currently, but ran into a problem with line charts in 12.0.2.  The zero centerline flag did not work, so I dynamically generated the ranges and linked them in.
    You can probably do the same with a little extra BLS coding.
    Mike

  • Grid lines appear in bold format in Graphs - OBIEE 10g

    Dear Experts,
    I am facing an issue with the grid lines in the graphs in reports.
    All the graphs in reports(webcat) are appearing with 'bold GRID lines' instead of normal grid lines which in turn is affecting the look and feel of the graphs in the webcat. Is there any way to eliminate this by setting any parameter in XML files?
    I am using OBIEE 10g version. Kindly let me know your inputs so as to eliminate this bold grid lines in all the graphs.
    Thanks,
    Sam.

    Hi,
    Refer this and it might be help you.
    Re: Remove grid lines by default in chart view
    Thanks,
    Satya

  • Is there a way to turn on grid lines in mailboxes like you could in Eudora?

    If anyone here has used Eudora, then you probably know that you could customize the message listing for a mailbox to turn on grid lines between message lines and or columns if you wanted.
    Does anyone know of a hack that could do that, or maybe just tell Mail to highlight every other row for easier list readability?
    Thanks!

    That would be an improvement to the interface. I've been looking for some time and not found a way to do it though. Anyone else?
    If anyone here has used Eudora, then you probably
    know that you could customize the message listing for
    a mailbox to turn on grid lines between message lines
    and or columns if you wanted.
    Does anyone know of a hack that could do that, or
    maybe just tell Mail to highlight every other row for
    easier list readability?
    Thanks!
    Mac Pro   Mac OS X (10.4.8)  

Maybe you are looking for

  • Error and weird behaviour in executable launch

    Hello folks, This post is regarding a weird behaviour i am experiencing with an executable i built.  LABVIEW version(Includes Runtime engine) LV2012 SP1 f3 DAQmx: 9.6.1 The behaviour is listed below in detail.  In a nutshell, the exectuable runs on t

  • Is it possible to increase the disk size of a vm's system disk in ovm 2.2.2

    I am running OVS 2.2 and OVM 2.2.2 - I have imported a OEL 5U6 template and created a machine to try and install OHS on .. unfortunately at about 95% through the install I run our of disk space - so I want to be able to increase the size of the drive

  • Segmentation Graphs

    Hi, In the segment builder in 2007,you can apparently able to see the distribution of attribute values among business partners in a graphical format (eg. Pie Chart or Bar Graph). I am having some difficulties trying to get the graph to display agains

  • ORA_FFI and complex datatypes

    Hi all, I must call a function from an API function in a dll file , and the documentation of the arguments of the function includes a "struct" datatype which is defined like this : typedef struct { unsigned long ulSize; unsigned char RData[16]; } RSP

  • Pro free trial downloaded but it won't install because it says I already have a superior product (Standard)?

    I have Adobe Standard.  I'd like a free trial of Adobe Pro because moving pages around in a 400 page document in Standard seems to be a nightmare.  It says Pro downloaded but it won't install because it says I already have a superior product.