Cfchart MX7 doesn't scale results like MX6

There appears to be a bug in cfchart in ColdFusion MX7 where
if you are trying to display a bar chart from a query with too many
rows, the chart will display with no bars in it.
For example, if I have a query with 365 rows (one for each
day of the year), and I try to display it in a CFCHART that is
600px wide, the chart data won't appear. If I specify a width of
850px, the chart data appears.
In ColdFusion 6, the chart would automatically scale the bars
so you could squish as much data into a small space as you wanted.
Does anyone know a way to re-create this in MX7?

I changed the chart type to 'line' instead of 'bar' and it
worked. There must be a bug with bar charts in MX7

Similar Messages

  • CFCHART MX7 doesn't scale the X axis like 6.1

    There appears to be a bug in cfchart in ColdFusion MX7 where
    if you are trying to display a bar chart from a query with too many
    rows, the chart will display with no bars in it.
    For example, if I have a query with 365 rows (one for each
    day of the year), and I try to display it in a CFCHART that is
    600px wide, the chart data won't appear. If I specify a width of
    850px, the chart data appears.
    In ColdFusion 6, the chart would automatically scale the bars
    so you could squish as much data into a small space as you wanted.
    Does anyone know a way to re-create this in MX7?

    I changed the chart type to 'line' instead of 'bar' and it
    worked. There must be a bug with bar charts in MX7

  • Mail App Stationary Doesn't Scale / Resize on Mobile devices

    Testing the Mail Stationary, for which I was very excited about, and found that it doesn't scale on mobile devices or even my desktop Mail app. Sent from Mail app on desktop and tried viewing on iPhone, iPad, and my desktop... all 3 devices required horizontal scrolling to view the entire message... while other email marketing messsages scaled just fine.
    UPDATE: Found that in some cases it will scale if I open another message first and then switch back, at least on the iPhone and iPAd in landscape orientation.
    What's up with Apple, or possibly me, that their own stationary doesn't scale on their own devices??  I haven't even tested on Outlook because I can only imagine the results (wouldn't it be ironic if it worked there??)
    Experiences?
    Do the thrid party templates, Jumsoft or Equinox, work any better?

    having exactly the same problems and made exactly the same experiences..
    maybe one more: i checked Outlook - bouth for Mac and Windows. Outlook doesn't like attached images, they are visible in HTML but also attached like real attachments. put them on an webserver and add complete URL and your stationery will look fine.. in Outlook

  • Search in Mail doesn't show results after Migrating

    If I search for a word or an adr. in Mail nothing show up. Unless I've just read the mail. Like that newly read email is the only one being searched in ..?
    This happened after moving my user account to a new MacPro with Migration Assistant.
    (first a clean install of 10.7 on a new disk in bay 1 on the "new" MacPro and updating to 10.7.5 - Starting up from the new disk with my "old" HD in bay 2 on the new machine and using Migration Assistant to move all my data over to the new disk in bay 1)
    Same Mac OSX version, but MacPro version from 1.1 to 3.1
    Also Spotlight doesn't show results.
    Is there a way to make a new "search cache" or whatever that overview file is called ...
    Suddenly now, when not getting any search results, I see how much I use search in Mail and Spotlight ... !
    Thanks

    Try posting this in the 10.7 Mail forum. You'll get more help there.
    DALE

  • Module that doesn't scale 100% to its container

    Hi,
    I have a module that doesn't scale 100% to its container
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Module xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical"
        percentWidth="100" percentHeight="100" verticalGap="0"
        >
        <mx:creationComplete>
            <![CDATA[
            vo = VO.getInstance();
            ]]>
        </mx:creationComplete>
        <mx:Script>
    You see anything wrong?

    I set up the panel like this      
    privileges= new SuperPanel();
            privileges.x=0;
            privileges.y=0;
            privileges.width=725;
            privileges.height=500;
            privileges.verticalScrollPolicy='off';
            privileges.allowDrag=true;
            privileges.allowResize=true;
            privileges.allowClose=true;
            privileges.allowMaximize=true;
            privileges.allowMinimize=true;
            privileges.allowMaximize=true;
            privileges.addEventListener(CloseEvent.CLOSE,privilegesClose)
            privileges.layout='vertical';
            privileges.title="Assign privileges";
            privileges.addChild(privilegesML);
    then I load the module
              privilegesML.url = 'modules/Privileges.swf';
    The module looks a bit like this
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Module xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" paddingBottom="0" paddingLeft="0" paddingRight="0" paddingTop="0"
        width="100%" height="100%" verticalGap="0"
        >
        <mx:creationComplete>
            <![CDATA[
            vo = VO.getInstance();
            ]]>
        </mx:creationComplete>
        <mx:HBox width="100%">
            <mx:Button label="Save changes to server" click="deals.dataProvider=tradesResult">
                <mx:icon>@Embed(source='../../images/32px-Crystal_Clear_app_kwrite.png')</mx:icon>
            </mx:Button>
            <mx:Button label="Refresh list" icon="@Embed(source='../../images/cog.png')" click="myService.getUsers();"/>
        </mx:HBox>
        <mx:AdvancedDataGrid id="deals" displayItemsExpanded="false" dataProvider="{vo.usersResult}" width="100%" height="100%" sortExpertMode="true" variableRowHeight="true" headerStyleName="smallHeader" editable="false" fontWeight="normal">
            <mx:columns>
                <mx:AdvancedDataGridColumn dataField="name" headerText="User name" width="120" textAlign="center" editable="false"/>
                <mx:AdvancedDataGridColumn headerText="Add trade" width="70" editorDataField="addTradeView" rendererIsEditor="true" backgroundColor="0xddf5ff">
                    <mx:itemRenderer>
                        <mx:Component>
                                <mx:CheckBox >
        <mx:Script>
                                    <![CDATA[
                                        override public function set data(value:Object):void
                                            super.data=value;
                                            if(value != null){
                                            this.selected=this.data.addTradeView;
                                    ]]>
                                </mx:Script>
                                    <mx:change>
                                        <![CDATA[
                                        this.data.isModifiedClientSide = 1;
                                        this.data.addTradeView = this.selected; //used to check through data and update server
                                        ]]>
                                    </mx:change>
                                </mx:CheckBox>
                        </mx:Component>
                    </mx:itemRenderer>
                </mx:AdvancedDataGridColumn>
            </mx:columns>
        </mx:AdvancedDataGrid>
    </mx:Module>

  • Scaling sprite for printing doesn't scale content

    Need help with this one!
    I have a Flash docutment that is 950 x 650. I want to add a
    "print" button that will automatically scale it to fit uncropped on
    an 8.5" x 11" page (Landscape).
    Problem is, although the sprite DOES scale to fit the page,
    the content doesn't scale but rather just ends up being cropped.
    It's like my sprite is a window looking through to my image. I
    change the size of the window but the image behind it remains the
    same size.
    Here's the code:
    Thanks!
    Phalconheart

    I have found that I needed to add each sprite and textfield
    individually. I actually just created new instances of each element
    to add to my page sprite. ie.
    if stage has a square object and a circle objects:
    var square:Square = new Square();
    square.scaleX = .8;
    square.scaleY = .8;
    var circle:Circle = new Circle();
    circle.scaleX = .8;
    circle.scaleY = .8;
    printSprite.addChild(square);
    printSprite.addChild(circle);
    .... yada yada
    myPrintJob.addPage(printSprite, etc etc

  • When I click on an email link in Firefox, I get a message in the far left corner of my screen that says "mail to:email address". Outlook doesn't open up like it does in Internet Explorer. I've set Outlook as my default email in Windows 7.

    When I click on an email link in Firefox, I get a message in the far left corner of my screen that says "mail to:email address". Outlook doesn't automatically open like it does in Internet Explorer. I've made Outlook my default email in Windows 7.
    == This happened ==
    Every time Firefox opened
    == When I upgraded to Windows 7.

    See this:
    [http://support.mozilla.com/en-US/kb/Changing+the+e-mail+program+used+by+Firefox]

  • I downloaded latest software on iphone 4 and installed new software on my imac (snow leopard 8.6 and now phone not synching with new itunes. Itunes does recognize the phone but the itunes is totally different now. It doesn't look anything like the previou

    I downloaded latest software on iphone 4 and installed new software on my imac (snow leopard 8.6)and now phone not synching with new itunes. Itunes does recognize the phone but the itunes is totally different now. It doesn't look anything like the previous vesions. I can't even find a tab for synching. very strange. any help is appriciated.

    iTunes 10.7 is compatible with Snow Leopard.
    You can download it here: http://www.apple.com/itunes/

  • 2014 Mac mini doesn't scale the entire HP Envy 32 monitor screen

    I recently purchased a HP Envy 32 monitor for use with my 2014 Mac mini with the Iris display. I get 2560x1440 resolution at 60 Hz on both the DP (1.2) as well as the HDMI ports (using the auto-detected HP Envy 32 color profile) but the display doesn't scale the entire screen of the monitor. Is anyone else using this configuration successfully? If so, what have you done to make full use of the 32" monitor real-estate? I simply cannot find any options in Display preferences (Yosemite) to change underscan options or for that matter within the monitor itself. Is there a particular display profile or driver I can use to fix this issue?

    I'm using a 4K compatible DP cable connected to the Thunderbolt port and getting to the max resolution of the monitor. So I don't think the issue lies there. I was able to use SwitchResX trial mode to discover an underscan option that allowed me to scale to the entire monitor screen. Assuming SwitchResX is manipulating core OSX functions, I'd assume there is some display related configuration within OSX that I should be able to tweak in order to scale the monitor screen natively in OSX without requiring any 3rd party software. Any thoughts for how to go about tweaking the display natively?
    Thanks

  • FM K_LINE_ITEM_ACT_DATA_GET doesn not display result

    HI Guys,
    FM K_LINE_ITEM_ACT_DATA_GET doesn't display result for one of my user. Instead of having to debug standard function , have anybody experienced this before and can tell if user might miss authorization ?  please advice ...

    ee

  • Desktop content viewer still doesn't scale 2048 folios?

    or does it?
    if I'm creating a 2048x1536 folio in inDesign and preview it on the desktop the viewer doesn't scale to fit so i can only see half the page
    anyone know a way around this, other than to create a 1024 doc?
    - Tim

    Our v20 release will include the ability to zoom the desktop viewer smaller so you can preview folios for the new iPad.
    Neil

  • Abandoned Cart report doesn't show results any more

    Does anyone know why the Abandoned Cart report doesn't show results any more? We know we have has some occur in the past.

    Hi MandaWeb2,
    This was reported as a bug to the dev team. I don't have an ETA for you on when it will be fixed, but it's certainly with them.
    Cheers,
    -mario

  • Image.getScaledInstance doesn't scale

    Hi All!
    I've got a problem with image scaling of JPG file. In the constructor body of my class that inherites from JPanal I wrote following code:
    Image image,image1;
    image = (new ImageIcon(this.getClass().getResource("/Pics/about.jpg"))).getImage();
    Thread.sleep(2000);
    image1 = image.getScaledInstance(this.getWidth(), this.getHeight(), Image.SCALE_DEFAULT);Everything is OK with 'image' loading, but getScaledInstance doesn't scale loaded image.
    In debuger I observe image1.getwidth()/getHeight() = -1...
    What's wrong?

    You can try one of these:
    public PieceIcon(String symbol,int pNum)    { 
          playerNumber = pNum;
          pieceImage = new ImageIcon("./Images/"+symbol+".jpg").getImage().getScaledInstance(10,10,Image.SCALE_DEFAULT);
            //Image doesn't appear dispite being smaller than original image, appears if scaledInstance part removed
           setOpaque(false);    }
           validate();// try it with just one or the other or both
           repaint();

  • I have iphone 3gs ios 6.1.3 .. I have a problem I can not look contact profile and save it. I already sync with outlook and windows books also can not be seen. I tried to add a contact on the contact menu, but the result like restart ... (but not restart

    I have iphone 3gs ios 6.1.3 .. I have a problem I can not look contact profile and save it. I already sync with outlook and windows books also can not be seen. I tried to add a contact on the contact menu, but the result like restart ... (but not restart the device, not just stored). I am confused about this issue ... please help ..
    thank you in advance.

    Your suggestion worked perfectly.  I can't believe there is nothing in any of the instructions I have seen online at the Yahoo and Apple help sites about the making sure the right default account is checked.  I don't think I was even aware there was a "default account" setting.  Thank you so much.

  • My Disk Utility window doesn't look anything like the one in the Help file

    My Disk Utility window doesn't look anything like the one in the Help file. It is missing the top row of icons (Burn etc.) What happened?

    Nevermind - I found the "Show Toolbar" Command.

Maybe you are looking for

  • Problem with new Adobe 9 update

    I updated my Adobe 9 today and now Safari is having problems loading, downloading, and printing documents. However, if I rightclick the PDF link and choose "Download Linked File," the document downloads fine. Any ideas about fixing the problem? Thank

  • Restrict user name in user mapping

    Dear All, We want the portal user should not be able to select or enter his user id of R/3 system while doing user mapping. say his user ID is ECCuser ,so when he will go to personalization->user profile->user mapping select system from drop down ,he

  • Modifying a 6i form in 9i and running in 6i

    Hello all forum members, I have a fmb created in forms 6i. I am modifying the visual aspects of the form in forms 9i. After saving the file in forms 9i, can I open it in forms 6i and compile & run in forms 6i? I would be grateful if someone replies t

  • App store uppdating problem

    My old e-mail is automatically choosed when i try to use the uppdating tool in app store, and i don't have the password for that e-mail anymore. I have checked My Appel ID so that my old e-mail isn't registred to my Appel ID. I am only having this pr

  • Links to access Elements 10 is for Elements 11

    I've been reading up on how to re-download Elements 10 by going to some prodesigntools website, but all it gives me is an install for version 11. I didn't buy 11, I bought 10, and I'm not ready to upgrade. Without a purchase history in adobe.com anym