Zoom (scale) with a series of Jpegs

What's the 'best' way to zoom in or out pf a series of jpegs? I have jpegs of one building over a few decades that I will line up in a comp so they are positioned and scaled the same. The sequence will start zoomed in on one feature. Then I want to zoom out gradually over time so that the last image shows the entire building. I thought I could just take that one comp and put it in another comp to scale it, but find it is already cropped to the frame size. This will end up in Premiere, so if it can be done easily there, that just as good!

This isn't difficult.
Your main comp is going to be as large as your jpegs and hopefully they're about 3kx4k. If they're smaller, either forget this idea or go back tot he original images and rescan them so they come in at 3kx4k. Note those are pixels and the scanning setting has nothing at all to do with dpi.
Line up all of your shots using blend settings. Start with your first image and line all of them up to the first image.
Set your dissolves bt do not move the comp or adjust scaling.
Bring this comp into your distribution comp whihc is set at 1080 or 720. Scale the main comp to simulate a camera that is zoooming out.
As an aside, you CAN use jpegs that are about 1500 pixels tall in a 3000 pixel comp if you understand and accept the scaling artifacts. You can apply a one- or two-pixel blur to hide the scaling. Or you can find a Photoshop guru who can do sophisticated rescaling for you.

Similar Messages

  • Open a pdf in an url with parameters #zoom=scale,left,top

    In the previous versions of Adobe Reader, it was possible to open a pdf in the web browser adding some arguments : #zoom=scale,left,top.
    So we could open the pdf at a specific position, with a specific zoom.
    But in the last version for windows, 10, the parameters 'left' and 'top' seem to be ignored. Only the zoom value is taken into account.
    There is no error message, no warning. We could write the values we want for the left and the top but nothing happens.
    So, I was wondering why it doesn't work anymore ?
    And to be sure, I re-installed the version 9  of Adobe and it works, but not with the 10.
    (and I hope that is not a fonctionnality which wasn't re-implemented in Adobe Reader 10).
    If someone has an idea...
    Thanks

    So, nobody has an idea ?
    Juste to be more clear, I give an example :
    http://www.adobe.com/content/dam/Adobe/en/devnet/acrobat/pdfs/pdf_open_parameters.pdf#zoom =300,200,200
    Then, if you enter this url in a new tab, considering you use the adobe reader plugin to open pdf in web browser, the file will be opened with a zoom of 300, and the letf corner position will be at 200 pixels of the right, and at 200 pixels of the top.
    But it doesn't work with Adobe reader 10, that's my problem...
    Could someone help me with this ?
    Bye

  • Zoom in with scale problam

    Hi
    when i am zooming in with the scale tool , the movement is not linear , at th start it is fast and to the end it shows down . the scale tool parameters are linear
    please help me
    Thanks

    Hi JK,
    With FlashJester Jugglor, you can pick and select the menu
    items you
    require, So you can leave the Zoom in and Out and remove the
    rest.
    Download a FREE evaluation copy from
    http://www.jugglor.com
    then go to
    Jugglor -> Setup Settings -> Default Flash Right Click
    Menu -> Press the
    button
    Good Luck
    Regards
    FlashJester Support Team
    e. - [email protected]
    w. -
    http://www.flashjester.com
    There is a very fine line between "hobby" and
    "mental illness."

  • Zoom Issues with JScrollPane

    Hello all,
    I have ran into an issue with zoom functionality on a JScrollPane.
    Here is the situation (code to follow):
    I have a JFrame with a JDesktopPane as the contentpane. Then I have a JScrollPane with a JPanel inside. On this JPanel are three rectangles. When they are clicked on, they will open up a JInternalFrame with their name (rect1, rect2, or rect3) as the title bar. Rect3 is positioned (2000,2000).
    I have attached a mousewheel listener to the JPanel so I can zoom in and out.
    I have also attached a mouse listener so I can detect the mouse clicks for the rectangles. I also do a transformation on the point so I can be use it during clicks while the panel is zoomed.
    All of this works fantastic. The only issue I am having is that when the JScrollPane scroll bars change, I cannot select any of the rectangles.
    I will give a step by step reproduction to be used with the code:
    1.) Upon loading you will see two rectangles. Click the far right one. You'll see a window appear. Good. Move it to the far right side.
    2.) Zoom in with your mouse wheel (push it towards you) until you cannot zoom anymore (May have to get focus back on the panel). You should see three rectangles. Click on the newly shown rectangle. Another window, titled rect3 should appear. Close both windows.
    3.) This is where things get alittle tricky. Sometimes it works as intended, other times it doesn't. But do something to this affect: Scroll to the right so that only the third rectangle is showing. Try to click on it. If a window does not appear - that is the problem. But if a window does appear, close it out and try to click on the 3rd rect again. Most times, it will not display another window for me. I have to zoom out one step and back in. Then the window will appear.
    After playing around with it for awhile, I first thought it may be a focus issue...I've put some code in the internal window listeners so the JPanel/JScrollPane can grab the focus upon window closing, but it still does not work. So, either the AffineTransform and/or point conversion could be the problem with the scroll bars? It only happens when the scroll bar has been moved. What affect would this have on the AffineTransform and/or point conversion?
    Any help would be great.
    Here is the code, it consists of two files:
    import java.awt.Color;
    import java.awt.Dimension;
    import javax.swing.BorderFactory;
    import javax.swing.JDesktopPane;
    import javax.swing.JFrame;
    import javax.swing.JScrollPane;
    public class InternalFrameAffineTransformIssue
         public static void main ( String[] args )
              JFrame frame = new JFrame("AffineTransform Scroll Issue");
              frame.setLayout(null);
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              JDesktopPane desktop = new JDesktopPane();
              frame.setContentPane(desktop);
              MyJPanel panel = new MyJPanel(frame);
              JScrollPane myScrollPane = new JScrollPane(panel);
              panel.setScrollPane(myScrollPane);
              myScrollPane.setLocation(0, 0);
              myScrollPane.setSize(new Dimension(800, 800));
              myScrollPane.getVerticalScrollBar().setUnitIncrement(50);
              myScrollPane.getHorizontalScrollBar().setUnitIncrement(50);
              myScrollPane.setViewportBorder(BorderFactory.createLineBorder(Color.black));
              frame.getContentPane().add(myScrollPane);
              frame.setBounds(0, 100, 900, 900);
              frame.setVisible(true);
    import java.awt.Dimension;
    import java.awt.Graphics;
    import java.awt.Graphics2D;
    import java.awt.Rectangle;
    import java.awt.event.MouseAdapter;
    import java.awt.event.MouseEvent;
    import java.awt.event.MouseListener;
    import java.awt.event.MouseWheelEvent;
    import java.awt.event.MouseWheelListener;
    import java.awt.geom.AffineTransform;
    import java.awt.geom.NoninvertibleTransformException;
    import java.awt.geom.Point2D;
    import javax.swing.JFrame;
    import javax.swing.JInternalFrame;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    import javax.swing.event.InternalFrameAdapter;
    import javax.swing.event.InternalFrameEvent;
    import javax.swing.event.InternalFrameListener;
    public class MyJPanel extends JPanel implements MouseWheelListener
              double zoom = 1;
              Rectangle rect1 = new Rectangle(50, 50, 20, 20);
              Rectangle rect2 = new Rectangle(100, 50, 20, 20);
              Rectangle rect3 = new Rectangle(2000, 2000, 20, 20);
              AffineTransform zoomedAffineTransform;
              JFrame frame;
              JPanel myPanel = this;
              JScrollPane myScrollPane;
              public MyJPanel(JFrame inputFrame)
                   setAutoscrolls(true);
                   addMouseListener(new MouseAdapter(){
                        public void mousePressed ( MouseEvent e )
                             System.out.println("Clicked: " + e.getPoint());
                             AffineTransform affineTransform = zoomedAffineTransform;
                             Point2D transformedPoint = e.getPoint();
                             //Do the transform if it is not null
                             if(affineTransform != null)
                                  try
                                       transformedPoint = affineTransform.inverseTransform(transformedPoint, null);
                                  catch (NoninvertibleTransformException ex)
                                       ex.printStackTrace();
                             System.out.println("Tranformed Point: " + transformedPoint);
                             if(rect1.contains(transformedPoint))
                                  System.out.println("You clicked on rect1.");
                                  createInternalFrame("Rect1");
                             if(rect2.contains(transformedPoint))
                                  System.out.println("You clicked on rect2.");
                                  createInternalFrame("Rect2");
                             if(rect3.contains(transformedPoint))
                                  System.out.println("You clicked on rect3.");
                                  createInternalFrame("Rect3");
                   addMouseWheelListener(this);
                   frame = inputFrame;
                   setPreferredSize(new Dimension(4000, 4000));
                   setLocation(0, 0);
              public void paintComponent ( Graphics g )
                   super.paintComponent(g);
                   Graphics2D g2d = (Graphics2D) g;
                   g2d.scale(zoom, zoom);
                   zoomedAffineTransform = g2d.getTransform();
                   g2d.draw(rect1);
                   g2d.draw(rect2);
                   g2d.draw(rect3);
              public void mouseWheelMoved ( MouseWheelEvent e )
                   System.out.println("Mouse wheel is moving.");
                   if(e.getWheelRotation() == 1)
                        zoom -= 0.05;
                        if(zoom <= 0.20)
                             zoom = 0.20;
                   else if(e.getWheelRotation() == -1)
                        zoom += 0.05;
                        if(zoom >= 1)
                             zoom = 1;
                   repaint();
              public void createInternalFrame ( String name )
                   JInternalFrame internalFrame = new JInternalFrame(name, true, true, true, true);
                   internalFrame.setBounds(10, 10, 300, 300);
                   internalFrame.setVisible(true);
                   internalFrame.addInternalFrameListener(new InternalFrameAdapter(){
                        public void internalFrameClosed ( InternalFrameEvent arg0 )
                             //myPanel.grabFocus();
                             myScrollPane.grabFocus();
                        public void internalFrameClosing ( InternalFrameEvent arg0 )
                             //myPanel.grabFocus();
                             myScrollPane.grabFocus();
                   frame.getContentPane().add(internalFrame, 0);
              public void setScrollPane ( JScrollPane myScrollPane )
                   this.myScrollPane = myScrollPane;
         }

    What I'm noticing is your zoomedAffineTransform is changing when you click to close the internal frame. This ends up being passed down the line, thus mucking up your clicks until you do something to reset it (like zoom in and out).
    Clicking on the JInternalFrame appears to add a translate to the g2d transform. This translation is what's throwing everything off. So in the paintComponent where you set the zoomedAffineTransform, you can verify if the transform has a translation before storing the reference:
             if (g2d.getTransform().getTranslateX() == 0.0) {
                zoomedAffineTransform = g2d.getTransform();
             }Edited by: jboeing on Oct 2, 2009 8:23 AM

  • Remove Zoom scale of Google maps in OBIEE 11g Mapviewer

    Hi,
    While integrating Google maps with OBIEE 11.1.1.6.0 , we are able to see two Zoom scales one for BI layer and another for Base map layer (Google Map).
    When we select the former Zoom scale (BI Layer) , our views have been placed in exact countries. But when we select latter one, only base map i.e., Google map is zooming without upholding the views(Color fill,Image,Bar Graph,etc.,).
    So is there any way to bring synchronization between two layers with one zoom scale.
    Kindly help me to sort out this issue.
    Thanks in advance!

    Will require backport of a fix for mapviewer (oraclemaps.js) that has to be part of the OBIEE patchset.
    Filing a bug would help the process.

  • How do I print a series of jpegs as a flipbook?

    I have a series of jpeg that I would like to turn into a printed flipbook.  Ideally each finished print would be 2x2.5" with a 1.5" white boarder on the left side for binding.  Contact page II doesn't allow me to set the margins I want.  I am using CS (no numbers following).
    Thanks

    If you have the full Creative Suite, you can use InDesign to set up a page with several frames. Then cut/trim to 2x2.5" pieces.
    This is not really an ideal task for Photoshop alone.

  • Using QuickTime Pro to convert a series of JPEG images into a QT movie?

    Can I use QuickTime Pro to convert a series of JPEG images into a QT (uncompressed) movie? Thanks...
      Windows XP  

    Yes.
    One of the features of the QuickTime Pro upgrade is "Open Image Sequence". It imports your sequencially named (1.jpg, 2.jpg) liked sized images (any format that QT understands) and allows you to set a frame rate.
    http://www.apple.com/quicktime/tutorials/slideshow.html
    You can also adjust the frame rate by adding your image .mov file to any audio clip. Simply "copy" (Command-A to select all and then Command-C to copy) and switch to your audio track.
    Select all and "Add to Selection & Scale". Open the Movie Properties window and "Extract" your new (longer or shorter) file and Save As.
    As you've posted in the Mac Discussion pages but your profile says XP you'll need to subsitute Control key where I reference Command key.

  • Playing a series of jpeg images on Firefox (like a video)

    We are having a problem playing a series of jpeg images on Firefox (like a video). It works perfectly on IE, Chrome and Safari.
    Here you can see a demonstration of the problem: [http://www.youtube.com/watch?v=8tG0zuoMbLM http://www.youtube.com/watch?v=8tG0zuoMbLM]
    Our code just loads one Jpeg after another. For some reason this causes Flickering with FF.
    '''How to replicate the problem on our website'''
    You can observe the problem by actually visiting our website. Please follow the link below (use firefox):
    http://www.camba.tv/CameraView.aspx?c=fudraste
    On this page select “Recorded Images” tab and then click “Play” below the image. Please increase play speed by clicking button with”>>” symbol. Once the images are playing you will notice a flicker in Firefox but the same page will not show flickering in Safari or chrome.

    Export to QuickTime Conversion. In format set Image Sequence. In Options pick the format, TIFF would be better than JPEG, which a lossy format. Make folder. Save the images. Process in Photoshop or whatever. Import the images set to one frame or use QT Pro to convert it back to a movie.

  • Problem with Multiple Series - CFCHART

    Using CF9, trying to create a simple chart with two series.  Problem is that when there are no values, CFCHART draws a line but with values of "0".
    The first series is a set of monthly values (12 values) one for each month in 2011. The second series are also monthly values, but for 2012 YTD (Jan thru May 2012).  Range for all values is between 90 and 100, so I have it set to "scale" so you can see if year-over-year is better or worse. 
    Am trying to plot Series 1 (2011) on one line, and Series 2 on a second line.  This allows comparison of year-over-year results.  Have two QofQ, one that contains the twelve 2011 values, and one that contains the five 2012 monthly values.  X-Axis values are numbers (1-12 for 2011, and 1-5 for 2012).  However, I re-format the results using "CreateDate", so CFCHART can recognize a date, and format/display only the "months" on the chart (i.e., JAN, FEB, MAR....... DEC).   This is working, since bottom of chart shows JAN thru DEC.
    The chart displays 2011 correctly with 12 points and a line.  But for 2012, it displays the 5 points (Jan-May) with their values, then displays Jun-Dec 2012 with values of ZERO.  So on the May 2012 plot, you have this big line that runs from 90% in May, down to 0% in Jun, then 0% for the rest of 2012.  I only want it to plot the 2012 line thru May.
    If you remove the 2011 series from the CFCHART, it displays correctly, and only displays the 5 months in 2012 (Jan-May).   And if you remove the 2012 series, it displays correctly, with all 12 months in 2011.
    I just need it to display exactly like that, when two CFCHARTSERIES are used.   Even if you <CFOUTPUT> the 2012 query, you get 5 items, Jan-May.  So not sure why it want to chart 12 items for 2012, with all ZEROs for June - Dec 2012.
    Appreciate any help/advise on how to get year-over-year lines, with 12 data points for 2011 and 5 for 2012. 
    Gary

    Thanks, I found the solution doing a Google search, which led me to this Adobe forum link:
    http://forums.adobe.com/message/3304324#3304324
    which is same one you mentioned.  I was so relieved it wasn't a problem with my code, I kept testing for errors, couldn't find any.
    We are in the process of upgrading from CF7 to CF9.  We are developing on CF9, but still using CF7 in production, hopefully for only a few more weeks until we get our new CF/SQL Servers, running CF9.
    Until then, have to write two versions of the .CFM file, one that runs on CF7 servers, and one for the CF9 test servers.
    Thanks again for getting back, much appreciated.
    Gary

  • Earth Zoom scale problem

    Hi there,
    My first post on a Apple forum...quite a momentous occasion.
    Basically I want to do a simple zoom in from an earth view into a city in Motion. I've researched it online and there is one tutorial which everyone points too:
    http://www.youtube.com/watch?v=fkvURxnIKsw
    I followed the tutorial using around 15 images from Google. All good. The problem happened when I came to keyframe the zoom in. I need to zoom in around 4000000 percent to get to my city from my widest shot. So on playback the zoom starts absurdly fast and ends absurdly slow, even with adjusting the keyframe interpolation. I use exactly the same method as the tutorial but the difference is, he is only zooming in from a wide view of a city to a building and so only needing around 3000 percent. Much easier to handle.
    After Effects tutorials get around the huge scale problem by 'parenting' the layers to the closest image (ie:the city) but i can't seem to find a way similar in Motion.
    Any help much appreciated

    The corollary in Motion to parenting in After Effects (in this tutorial) is grouping. The way they use grouping in that tutorial, you should be able to get the results you're looking for.
    Personally, I don't think you need so many groups. I put two layers into one group (GROUP 1), and scaled the first layer down. Then I added a 2nd group (GROUP 2) below the first group with my next largest pic. Instead of scaling down the 2nd layer to match the 3rd, I scaled GROUP 1 to match the 3rd layer. Once they matched, I dropped the 3rd layer into GROUP 1 and added a 4th layer to GROUP 2. Repeat as necessary.
    When you're finished you'll have all the layers into a single group which should be at a small scale. Then animate your group.
    The real problem is that you don't have an exponential scaling of your group. To solve that problem, animate your scale with the exponential behavior. Make sure that your group is at its farthest point. Right-click the scale and choose Exponential. Go to the end of the behavior. In the behaviors tab, adjust the End value until you're zoomed in to your nearest point. Open the Keyframe Editor (CMD+8) to view your exponential curve. Adjust the End Offset value on the behavior to shorten the animation to the length you want.
    You can also get exponential scaling with the Grow/Shrink Behavior. It's the same basic idea. Add it to your group and adjust the scale. Make sure that the increment is set to Natural Scale. You might even get better results from that.
    Andy

  • How to zoom in with Adobe Flash Player 12.0.0.77

    I like to play a game on Neopets called Destruct-O-Match.  Until two days ago, I could zoom in on the game (make it bigger) by right clicking with my mouse.  Now that option no longer exists, so the game is too small to see comfortably.  How do I zoom in and make the game big enough to enjoy using Adobe Flash Player 12.0.0.77?

    Thanks Mike, but I already did that.  Until two days ago, I would maximize
    the screen using Control +, but the game would still be small, so then I
    would zoom in with a right click of the mouse.  However, apparently there is
    a new version of Flash Player, 12.0.0.77, and there¹s no option of zooming
    in by right clicking.
    I figured out how to make the game bigger by reducing the resolution of my
    computer, but I can¹t play long because it makes me dizzy.

  • Issue to make mandatory field(SELD/BBD and Date of manufactor)in migo for particular Material type and material Number starting with'1' series.

    Hi friend,
    i have issue regarding mandatory  self life field (SELD/BBD and Date of manufactor)in migo for Batch Tab for particular Material start with '1' Series and material type.
    i want to make mandatory above field during GR from migo..any one let me know exit or badi for that to full fill this goal..
    Regard's,
    shaikh Khalid.

    Hi Shaikh
    First of all Thread is not closed seconldy as a good practice if you have resolved your issue kindly document it here so that it may help someone in future
    Nabheet

  • Keyboard can't type soe letters and relaces the with strange series of other letters. beachball constantly. beqrtwt 16 gb rabcvxz . idk what to do. lease help0.

    Problem description:
    keyboard can’t type soe letters and relaces the with strange series of other letters. beachball all the tie. 16 gb rabcvxz . idk what to do. lease help0.
    EtreCheck version: 2.0.6 (91)
    Report generated October 25, 2014 at 3:36:04 PM EDT
    Hardware Information: ℹ️
      MacBook Pro (13-inch, Mid 2012) (Verified)
      MacBook Pro - model: MacBookPro9,2
      1 2.5 GHz Intel Core i5 CPU: 2-core
      16 GB RAM Upgradeable
      BANK 0/DIMM0
      8 GB DDR3 1333 MHz ok
      BANK 1/DIMM0
      8 GB DDR3 1333 MHz ok
      Bluetooth: Good - Handoff/Airdrop2 supported
      Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
      Intel HD Graphics 4000 -
      Color LCD 1280 x 800
    System Software: ℹ️
      OS X 10.10 (14A389) - Uptime: 0:37:54
    Disk Information: ℹ️
      APPLE HDD TOSHIBA MK5065GSXF disk0 : (500.11 GB)
      S.M.A.R.T. Status: Verified
      EFI (disk0s1) <not mounted> : 210 MB
      Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
      MACINTOSH HD (disk1) /  [Startup]: 498.88 GB (475.08 GB free)
      Core Storage: disk0s2 499.25 GB Online
      MATSHITADVD-R   UJ-8A8 
    USB Information: ℹ️
      Apple Inc. BRCM20702 Hub
      Apple Inc. Bluetooth USB Host Controller
      Apple Computer, Inc. IR Receiver
      Apple Inc. Apple Internal Keyboard / Trackpad
      Apple Inc. FaceTime HD Camera (Built-in)
    Thunderbolt Information: ℹ️
      Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
      Mac App Store and identified developers
    Kernel Extensions: ℹ️
      /System/Library/Extensions
      [not loaded] com.livescribe.kext.LivescribeSmartpen (1) Support
    Launch Daemons: ℹ️
      [running] com.livescribe.PenCommService.plist Support
      [loaded] com.microsoft.office.licensing.helper.plist Support
    User Launch Agents: ℹ️
      [loaded] com.littleknownsoftware.MailPluginTool-Startup.plist Support
      [loaded] com.littleknownsoftware.MailPluginTool-Watcher.plist Support
    User Login Items: ℹ️
      LivescribeHelper Application (/Applications/Livescribe Helper.app/Contents/MacOS/LivescribeHelperAutoLaunch.app)
    Internet Plug-ins: ℹ️
      Default Browser: Version: 600 - SDK 10.10
      QuickTime Plugin: Version: 7.7.3
      SharePointBrowserPlugin: Version: 14.4.5 - SDK 10.6 Support
    3rd Party Preference Panes: ℹ️
      None
    Time Machine: ℹ️
      Time Machine not configured!
    Top Processes by CPU: ℹ️
          13% Safari
          8% parentalcontrolsd
          5% WindowServer
          1% com.apple.Safari.SearchHelper
          1% launchd
    Top Processes by Memory: ℹ️
      155 MB Safari
      103 MB mds_stores
      103 MB Contacts
      93 MB com.apple.WebKit.WebContent
      86 MB Spotlight
    Virtual Memory Information: ℹ️
      10.43 GB Free RAM
      4.80 GB Active RAM
      696 MB Inactive RAM
      1.24 GB Wired RAM
      1.02 GB Page-ins
      0 B Page-outs

    Thanks, I'm typing this message from an external keyboard borrowed from one of my schools iMac. It is working fine so could this be a serious hardware issue? I upgraded the RAM from 4 gb to 16 gb thinking that would solve the slowness/beachball issue but it didn't. Could it possibly be a faulty SATA cable or time to upgrade my hard drive as well?
    I'm feeling like this is beyond my reach and do not want to damage my MBP further. I'll shut it down and take it to the tech store on campus and hope they have mercy on my wallet. Thanks for the help.

  • Candlestick chart problem with multiple series

    Hello,
    I added one mx:CandlestickSeries object and couple additional
    mx:LineSeries objects to the chart. All series are represented but
    still I have one problem. More series I add - less candles are
    becoming of CandlestickSeries data. It seems that there should be
    any scaling option for all series in the chart or something like
    this, but I cannot find it. I'm still new in Flex Can anyone halp
    me with this?
    Thanx in advance
    marukas

    I've added screenshots to get better view of the problem.
    Here is chart with addtional series:
    Chart
    with multiple series
    And here nothing is changed except that additional line
    series were removed:
    Chart
    with only one CandlestickSeries
    Is it possible to get the same candles as in 2nd view with
    addiotnal series added?

  • Error with chart series

    Hi everyone!
    I have a problem with charts with multiple series.
    If the series are incomplete (with lacks of data for some columns), the values lose the right correspondence with the column.
    How can I deal with this?
    Thank so...
    DrPlexi
    Maybe an example would be clarifying, i attach here the xml data and two charts' xml:
    <ROWSET>
    <ROW>
    <series>5</series>
    <col_names>300C</col_names>
    <values>71.91701276542868</values>
    </ROW>
    <ROW>
    <series>3</series>
    <col_names>300C</col_names>
    <values>20.48012540803013</values>
    </ROW>
    <ROW>
    <series>Wagon</series>
    <col_names>300C</col_names>
    <values>7.600472191820757</values>
    </ROW>
    <ROW>
    <series>2</series>
    <col_names>300C</col_names>
    <values>0.0023896347204366342</values>
    </ROW>
    <ROW>
    <series>5</series>
    <col_names>DODGE</col_names>
    <values>65.13503987886224</values>
    </ROW>
    <ROW>
    <series>Wagon</series>
    <col_names>DODGE</col_names>
    <values>15.728327698513192</values>
    </ROW>
    <ROW>
    <series>2</series>
    <col_names>DODGE</col_names>
    <values>14.781938987298812</values>
    </ROW>
    <ROW>
    <series>3</series>
    <col_names>DODGE</col_names>
    <values>4.354693435325753</values>
    </ROW>
    <ROW>
    <series>5</series>
    <col_names>HUMMER</col_names>
    <values>43.14889344162732</values>
    </ROW>
    <ROW>
    <series>Wagon</series>
    <col_names>HUMMER</col_names>
    <values>27.14205893546898</values>
    </ROW>
    <ROW>
    <series>2</series>
    <col_names>HUMMER</col_names>
    <values>13.45361200411366</values>
    </ROW>
    <ROW>
    <series>3</series>
    <col_names>HUMMER</col_names>
    <values>8.480779975868687</values>
    </ROW>
    <ROW>
    <series>4</series>
    <col_names>HUMMER</col_names>
    <values>7.7746556429213465</values>
    </ROW>
    <ROW>
    <series>5</series>
    <col_names>CHEVY</col_names>
    <values>74.89464972938943</values>
    </ROW>
    <ROW>
    <series>3</series>
    <col_names>CHEVY</col_names>
    <values>25.105350270610575</values>
    </ROW>
    <ROW>
    <series>3</series>
    <col_names>CADILLAC</col_names>
    <values>39.497342869700724</values>
    </ROW>
    <ROW>
    <series>5</series>
    <col_names>CADILLAC</col_names>
    <values>64.38519904375845</values>
    </ROW>
    <ROW>
    <series>Wagon</series>
    <col_names>JEEP</col_names>
    <values>60.66246011233522</values>
    </ROW>
    <ROW>
    <series>5</series>
    <col_names>JEEP</col_names>
    <values>39.33753988766478</values>
    </ROW>
    </ROWSET>
    And here's the xml of two charts (both showing wrong results):
    chart:
    <Graph graphType="LINE_VERT_ABS">
    <Title text="" visible="true" horizontalAlignment="CENTER"/>
    <LocalGridData colCount="{count(xdoxslt:group(.//ROW, 'col_names'))}" rowCount="{count(xdoxslt:group(.//ROW, 'series'))}">
    <RowLabels>
    <xsl:for-each-group xmlns:xsl="http://www.w3.org/1999/XSL/Transform" select=".//ROW" group-by="series">
    <Label>
    <xsl:value-of select="current-group()/series"/>
    </Label>
    </xsl:for-each-group>
    </RowLabels>
    <ColLabels>
    <xsl:for-each-group xmlns:xsl="http://www.w3.org/1999/XSL/Transform" select=".//ROW" group-by="col_names">
    <Label>
    <xsl:value-of select="current-group()/col_names"/>
    </Label>
    </xsl:for-each-group>
    </ColLabels>
    <DataValues>
    <xsl:for-each-group xmlns:xsl="http://www.w3.org/1999/XSL/Transform" select=".//ROW" group-by="series">
    <RowData>
    <xsl:for-each-group select="current-group()" group-by="col_names">
    <Cell>
    <xsl:value-of select="sum(current-group()/values)"/>
    </Cell>
    </xsl:for-each-group>
    </RowData>
    </xsl:for-each-group>
    </DataValues>
    </LocalGridData>
    </Graph>
    chart:
    <Graph type="BAR_VERT_PERCENT">
    <Title text="" visible="true" horizontalAlignment="CENTER"/>
    <LocalGridData colCount="{count(xdoxslt:group(.//ROW, 'col_names'))}" rowCount="{count(xdoxslt:group(.//ROW, 'series'))}">
    <RowLabels>
    <xsl:for-each-group xmlns:xsl="http://www.w3.org/1999/XSL/Transform" select=".//ROW" group-by="series">
    <Label>
    <xsl:value-of select="current-group()/series"/>
    </Label>
    </xsl:for-each-group>
    </RowLabels>
    <ColLabels>
    <xsl:for-each-group xmlns:xsl="http://www.w3.org/1999/XSL/Transform" select=".//ROW" group-by="col_names">
    <Label>
    <xsl:value-of select="current-group()/col_names"/>
    </Label>
    </xsl:for-each-group>
    </ColLabels>
    <DataValues>
    <xsl:for-each-group xmlns:xsl="http://www.w3.org/1999/XSL/Transform" select=".//ROW" group-by="series">
    <RowData>
    <xsl:for-each-group select="current-group()" group-by="col_names">
    <Cell>
    <xsl:value-of select="sum(current-group()/values)"/>
    </Cell>
    </xsl:for-each-group>
    </RowData>
    </xsl:for-each-group>
    </DataValues>
    </LocalGridData>
    </Graph>

    I was having the same error while trying to plot a moving average across 7 days. The work around I found was rather simple.
    If you right click your report in the solution explorer and select "View Code" it will give you the underlying XML of the report. Find the entry for the value of your calculated series and enter a formula to dynamically create your periods.
    <ChartFormulaParameter Name="Period">
                      <Value>=IIf(Count(Fields!Calls.Value) >= 7 ,7, (Count(Fields!Calls.Value)))</Value>
    </ChartFormulaParameter>
    What I'm doing here is getting the row count of records returned in the chart. If the returned rows are greater than or equal to 7 (The amount of days I want the average) it will set the points to 7. If not, it will set the number to the amount of returned rows. So far this has worked great. I'm probably going to add more code to handle no records returned although in my case that shouldn't happen but, you never know.
    A side note:
    If you open the calculated series properties in the designer, you will notice the number of periods is set to "0". If you change this it will overwrite your custom formula in the XML.

Maybe you are looking for

  • Problem in invoking the BADI in SE19

    Hi, I am working on a BADI for the Tcode VD02 and i am facing a problem that when i am trying to activate the Implementation it is asking for the creation or assign of the Enhancement Implementation,but i am working on the existing BADI . Please prov

  • I keep losing my new bookmarks after I Sign off Safari and Sign in again

    I transfered my bookmarks over from my other computer and I am trying to add more bookmark folders, after I am done and quit Safari,  later go  back to Safari and everything I have added is gone, Back to where I was before. Why is this happening and

  • Doubt in sql loader regarding TOM's reply

    Hi, My question is at the last line. But u need to go through this to understand my problem. Hi Tom, I want to load some input files delimited by Text into Oracle database. Can you please help me out in this. I know one way of doing it is using SQLLO

  • My outlook on PC doesn't show message contents or forwarded e-mail

    I can see the e-mail content or forwarded message on my android phone, but not on my pc..My boss can't view them on her laptop either. We don't know what's causing this as we didn't have a problem before...?

  • Where to find application support folder?

    Just upgraded from Snow Leopard to Mountain Lion and I'm unable to locate my application support folder. I remember having to go to library then application support folder was in it but now its gone missing. Just need a step by step tutorial to locat