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.

Similar Messages

  • Removing Background Grid Lines on Chart

    How do you do that?

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

  • 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

  • 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

  • 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

  • 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 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

  • Showing grid lines as dashed lines

    Dear All,
    i am using a waveform chart to plot my data .. i want to insert grid inside my chart .
    There are 3 different options for inserting grids in d chart . 
    is dere any way i can change the style of lines of grids ?? i want to see them as dashed lines rather than a continous line ... 
    Thanks
    Ritesh

    Hi,
    the solution to it was a bit complicated .. i had to search for examples to get my data on the wavefrom graph... 
    thing is like dis. i have to store the data of different channels on different clusters and join the clustes using Build Array ... 
    Now dat i am able to show the data on graph(atleast) its not showing it continously .. the graph is plotting all d data at the starting point, i.e 0 and not moving forward .. 
    I am posting the Block Diagram as well as the Output that i am getting .. 
    Regarding Block Diargram - I am reading a text file containing the waveform data.. it has N number of rows.. each row has 4 columns containing data of 4 different channels .
    i read the file "line by line" and store the data in 4 diff arrays(b,c,d,e). then i cluster these 4 arrays separately and build array using dese 4 clusters .. and d output of the array is plotted on the graph den.. 
    Pl. have a look at it and see if dere's any solution to it .. 
    Thanks
    Attachments:
    Block Diagram.JPG ‏36 KB
    Output.JPG ‏17 KB

  • 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

  • Problem removing grid lines from prints in PhotoShop Elements 13

    I cannot remove faint grid lines from my prints in Photoshop Elements 13, even after I've turned off the grid overlay. How can I get these lines out? I'm desperate as I am writing a book and am stymied at this point. Help!

    John Maggot wrote:
    I cannot remove faint grid lines from my prints in Photoshop Elements 13, even after I've turned off the grid overlay. How can I get these lines out? I'm desperate as I am writing a book and am stymied at this point. Help!
    The grid does not print. There has to be another source for the visible grid lines on your prints. Suggest that you do the following:
    Make sure that your ink cartridges have plenty of ink
    Do a deep cleaning of your print head
    Align the cartridges as per instructions in the printer's manual
    Do a test print

  • In Report I have a 2D axis system. How do I properly calculate the grid line interval for exactly 10 dots per tick

    Having trouble getting the dots to line up correctly with the ticks of a 2D axis.  I would like to have exactly 10 dots per tick.  The programming is no problem.  I set the D2AxisGridInterv variable after opening the 2D axis object.  I can't seem to figure out how to calculate the number that results in exactly 10 dots per tick.  I also have tried manually iterating to get 10 dots and have not been succesful.  What is this number based from?  It says as a percentage of the diagonal of the worksheet.  I can get pretty close to 10 dots per tick, but it is always off just a bit.  Is there really a way to get scientific based dots on a 2D axis so that the data can be analyzed from a printed plot?
    Thanks-Ryan

    Hi Ryan,
    I'm not entirely sure what you mean by "dots", but I'm going to guess you meant grid lines set to dot display.  In that case you can align the grid lines to the axis sub-ticks, then set the sub-ticks to invisible.  The sub-ticks can be set to N of them per axis tick.  Attached you will find an example of 10 dotted vertical grid lines per X axis tick.
    Let me know if you meant something else,
    Brad Turpin
    DIAdem Product Support Engineer
    National Instruments
    Attachments:
    Ryan37.zip ‏30 KB

  • 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

Maybe you are looking for