Chart Lines Dissapearing When Line Width Less than .38pt

I have a Line Chart with about 70 different series. As you can imagine, it gets pretty crowded. In SQL server 2005, I was able to set the line width to .25pt, but when I try to do the same in 2012, the lines disappear! The smallest line width that I can
get to show up is .38.....If anyone out there knows why this happens, I would really appreciate a hint. I've tried everything from messing with the markers to the empty point settings...
Thanks

Hi Scott,
I am able to reproduce your scenario that when the line width with less than or equal to 0.375pt, they will all disappear in the line chart in my test environment. Based on my research, it seems to be the particular render extensions which cannot display
the narrow lines in line chart. However, if we export the report into PDF, the all lines which narrow than 0.375pt will appear in the report. I think this is by design.
I would suggest you submitting a wish at
https://connect.microsoft.com/SQLServer/Feedback. 
Connect site is a connection point between you and Microsoft, and ultimately the larger community. Your feedback enables Microsoft to make software and services the best that they can be, and you can learn about and contribute to exciting projects.
Thank you for your understanding.
Regards,
Katherine Xiong
Katherine Xiong
TechNet Community Support

Similar Messages

  • MY new Ipod Nano does not hold a charge.  I use it mostly as a watch, perhaps look at it 5 or 6 times in 8 hours, and leave it in sleep mode the rest of the time.  I drains to the red line in less than 2 days.  My husband's nano will last a week this way.

    MY new Ipod Nano does not hold a charge.  I use it mostly as a watch, perhaps look at it 5 or 6 times in 8 hours, and leave it in sleep mode the rest of the time.  I drains to the red line in less than 2 days.  My husband's nano will last a week this way.  I thought it drained because of looking at photos, so I quit looking at them and it made no difference.  Am I doing something incorrectly to cause this short battery life?

    You are still under warranty if your iPod is "new."  Take full advantage of it by either calling iPod tech support, Apple Care if you have it or take it in to an Apple store or an AASP.  Whichever is more convenient for you.

  • Why can't I open iTunes or apps on ipad1? And why do apple not support the latest update for ipad1 when it's less than 2 years old. I am sick of huge corporations ripping off joe public!

    Why can't I open iTunes or apps on ipad1? And why do apple not support the latest update for ipad1 when it's less than 2 years old. I am sick of huge corporations ripping off joe public!

    And the processor limitations.
    iPad: RAM - 256MB, Processor - 1 GHz Apple A4
    iPad 2: RAM - 512MB, Processor - 1GHz dual-core Apple A5
    iPad 3: RAM 1024MB, Processor - 1GHz dual-core Apple A5X
    Similarily, the iPad 2 did not get Siri and some other features in iOS 6.
     Cheers, Tom

  • Warning Message  in Sales Order when Sales price  less than Cost Price

    HI
    Generally when we raise a sales order if Sales price is less than that of Cost price , System will provide us a warning message inside the sales order screen.  Now , this is not coming.  Is there any settings in the configuration to get this warnin message. Please help us on the above
    Regards
    Anis

    There is no configuration is available for this from functional side.
    Try with User Exit MV45AFZZ , for this Co ordinate with your ABAPer.
    Regards,
    Ramesh

  • When minutes total less than '10' how do I display a '0' in front of the number

    Post Author: Kara
    CA Forum: Formula
    Hi,
    I am using v9. I have written a report that has formulas in it to add two times together giving the total in HH:MM. However, I can't get the total to display correctly if the number of minutes is less than 10. For example: 12 hrs 8 mins is displaying as 12:8 rather than 12:08. My formulas are as follows:
    (Maximum ({JOURNAL.PANELLOCALTZDT}, {Person.PersonID})-Minimum ({JOURNAL.PANELLOCALTZDT}, {Person.PersonID}))*24
    Truncate ({@Hours Worked})
    Remainder ({@Hours Worked},1 )*60
    I have tried using format editor to change the way it displays but this didn't work so I guess there must be something I can change in the formula...
    Anyone got any ideas?

    Post Author: synapsevampire
    CA Forum: Formula
    The trick is to use totext({@yourformula},"00")
    Check this out:
    whileprintingrecords;numberVar dur := datediff("s",{Orders.Order Date}, currentdate); //get the seconds between 2 datesnumberVar hrs;numberVar min;numberVar sec;stringVar hhmmss;hrs := Truncate(Truncate(dur/60)/60);min := Remainder(Truncate(dur/60),60);sec := Remainder(dur,60);hhmmss := totext(hrs,"00") + ":" + totext(min,"00") + ":" + totext(sec,"00");hhmmss

  • When btree_space is less than used_space

    Hi all,
    Can anybody let me know on what condition btree_space is less than used_space in Oracle 9.2.0.8
    SQL> SELECT HEIGHT,BLOCKS,BTREE_SPACE, USED_SPACE, PCT_USED,DEL_LF_ROWS,BR_ROWS
    FROM INDEX_STATS;
        HEIGHT     BLOCKS BTREE_SPACE USED_SPACE   PCT_USED DEL_LF_ROWS    BR_ROWS
             3       1024     5425220    6146870        114         571        928

    user13389425 wrote:
    Can anybody let me know on what condition btree_space is less than used_space in Oracle 9.2.0.8
    SQL> SELECT HEIGHT,BLOCKS,BTREE_SPACE, USED_SPACE, PCT_USED,DEL_LF_ROWS,BR_ROWS
    FROM INDEX_STATS;
    HEIGHT     BLOCKS BTREE_SPACE USED_SPACE   PCT_USED DEL_LF_ROWS    BR_ROWS
    3       1024     5425220    6146870        114         571        928
    This may be the effect of a concurrency issue on the index that has resulted in a rapid growth in the number of ITL entries in some of your index leaf blocks.
    The USED_SPACE is a measure of the actual size of the data in the index; the btree_space is Oracle's estimate of the available space in the index on the assumption that the size of the largest ITL is the size of every ITL in the index.
    Your br_rows figure shows that you have about 930 leaf blocks, which as 8KB per leaf block and INITRANS of 10 should give you a bree_space of about 7M, but your btree space is only about 5.2 MB, which suggests that Oracle has seen some ITLs with about 80 entries.
    Oracle has a defect in its leaf node split algorithm that can make the ITL to grow much bigger than it needs to be. Because you are running 9.2 you can work around this problem by setting maxtrans on the index to a reasonable value - since you've decided to set initrans to 10, then setting maxtrans to a slightly larger value (and living with a few TX mode 4 waits) is probably sensible. Unfortunately 10g ignores maxtrans.
    There's a series of articles about this on my blog - the first one is at http://jonathanlewis.wordpress.com/2009/07/20/index-quiz-1/ and the catalogue to the series is at http://jonathanlewis.wordpress.com/2009/09/19/index-itls/
    Regards
    Jonathan Lewis

  • Converting spool of line width more than 850 char to PDF format in ECC 6.0.

    Hello Experts.
    I am facing problem while trying to convert a spool (generated from background scheduling of an ALV ) to PDF format in ECC 6.0.
    The ALV has 45 columns. Using SAP note no 1226758 I am able to increase the spool width but when I am converting the spool  to PDF using FM 'CONVERT_ABAPSPOOLJOB_2_PDF' the end caharacters are getting truncated .
    Please reply ASAP . Any suggestion/Hint will be appreciated.
    Thanks and Regards
    Arvind Kumar Yadav

    Hi Aravind,
    go to SPAD transaction --> and change the printer which supports more than 45 columnsand 256 cahracters..
    according to the printer setting the output is created.
    choose any below format TYPES...X_65_256/2
    ABAP list: At least 65 lines 2*128=256 double columns (SAPLPD only)
    see th following link for result..
    <a class="jive_macro jive_macro_message" href="" __jive_macro_name="message" modifiedtitle="true" __default_attr="7318557"></a>
    Regards,
    Prabhudas

  • Create Idocs based on Company Code change & Line Items less than 950

    Dear all,
    I am trying to create the Idocs based on the flat file in the following way.
    1) Create the Idoc per company code
    2) If company code exceeds 950 lines then create another Idoc
    I am trying to follow this BLOG and could not be able to achieve it because in the Blog explained with flat structure and my case is Idoc structure.
    /people/claus.wallacher/blog/2006/06/29/message-splitting-using-the-graphical-mapping-tool
    I changed the Idoc Occurrence and imported to External definition.
    I am able to do the both check individually but not able to put them in combining.
    Please advice..
    Regards

    Company Codes -> sort -> SplitbyVlaue(Valuechange) -> CollapseContexts -> remove contexts
    AND
    Contact(CompanyCodes, Lines) both in header context - removeContexts - SortbyKey(CompanyCodes) -
    formatbyExample(Company Codes -> sort -> SplitbyVlaue(Valuechange)) - count - greater(>950)
    Srikanth Srinivasan

  • Why does my new macbook pro display the message "startup disk is full" when i have less than 50 gb used on a 500 gb hard drive?

    This is really a problem since i need to save stuff for school work and i can't currently do that.

    It happens anytime I log in, try to save something, or open a new application that may require me to save something. Any advice would be helpful

  • TS4002 over email limits when sending to less than 100 recipients

    I am below my email sending limits of 100 messages and 100 receipients and I still get "mail undeliverable" message from system administrator.  How many recipients can I send 1 message to?

    You need to look at the limits set by your ISP.  They have their own restrictions on numbers per e-mail and per 24 hour period.

  • DAQMx has no output when the pulse width is less than 0.1sec

    Hi,
        I am developing a application to generate square wave(voltage) and out put from a DAQMx card (PCI-6723   - 32 point analog in/out).  I attache a simplified code (labview8.5) I wish somebody can help me to figure out what is the problem
        When I set pulse width longer than 0.1 sec. everything works fine. If I set the pulse width less than 0.1 sec, the output from DAQ eithet gets nothing or incorrect(I used a Osclliscope to monitor the  DAQ output), although my labview monitor showed correct output.   I wonder if it is a sampling issue of the DAQ card.
         Thanks
        Guang
    Attachments:
    test21.vi ‏69 KB

    I think one or two things could be causing the problem.
    1.  Your DAQmx write is set for 1 sample.  I don't know how that dynamic signal type works with such a setting.  Perhaps it is just putting out the first sample of the signal that is generated.
    2.  The math for the frequency of the square wave does not make sense.  You are adding a pulse delay with the pulse period, then inverting it to get the frequency.  So a 1 second delay with 1 second pulse is a 1/2 Hz wave.  A 4 second delay with a 2 second pulse would be a 1/6 Hz wave.  That doesn't make sense to me.
    I would recommend building your own waveform or array and not using the express VI.  If you have a 1000 Hz frequency established let's say, build a 1000 element array.  For a .1 second pulse, set replace 100 of those elements with a 100 element array of the voltage value you want.  You can index it wherever you want in the array to account for whatever delay you want.  If you want a 1 msec pulse, then just replace a single element of that array wherever you want.

  • Top N Chart where there are less than N series'

    Post Author: acarey
    CA Forum: Charts and Graphs
    Hi guys,
    I'm using CR XI R2.
    I've got a report with a bar chart displaying the top 10 delays for peices of equipment. It works great but I have a display issue when there are less than 10 delays.
    For instance, on my top 10 chart for a certain day, there are only 2 delays and it stretches the columns to take up the entire chart. I would like them to display as if there were 10 delays, ie have a fixed width.
    Is there a way to enforce this?

    Post Author: Dan3D
    CA Forum: Charts and Graphs
    Are you doing a horizontal bar chart or a vertical column chart?

  • System Genrate Message  when profit less than 20 % In Sales Quotation

    Dear All
    In Sales Quotation in have multiple line and  my requirement is that when profit is less than 20 % per line (check  every line),system genrate message and stop, untill profit greater than 20 %, i already check Approval Procedures, its work only for header and in row level ,check only first line
    Using SAP B1 2007 A Sp 00 PL 47
    Any Body tell me how we can genrate our message in system
    Regards,
    Haider

    Dear Haider,
    Approval procedure will only apply to header and the 1st line.
    You may use SP_TransactionNothification for this. Search the forum if you are not familiar with this SP.
    Thanks,
    Gordon

  • Bug in Pages when setting width!

    In Pages (v3.0.2) I draw a simple shape (rectangle). I then click Inspector and choose 'Metrics'-tab where I manually want to set the width size. This works great EXCEPT for widths less than 1 cm! 1,23 and 3,85 for example works just fine - but it just don't accept any numbers below 1 for either width or height.
    I can of course resize the shape with the mouse, but it's obviously impossible to get the exact number I need.
    Please help me, this is rediculous!
    Best regards,
    /Stefan

    KOENIG Yvan wrote:
    Here we may tell you how we may do this or that, we can't change the program's behavior
    I understand, and I'm very thankful for it!
    Is it useful to add that this odd behavior is already reported ?
    Actually yes! When choosing OS and applications I'm not so much comparing feature lists, since these lists are always moving targets. Instead, I choose between cultures. My time investment for learning an OS/application is rather in a culture rather than a feature list snap shot in time. When getting so fast help as I just did from you, and also hear that this little misbehavior is also reported, I feel more secure in continuing invest more time in the Mac community. Which so far I think is great compared to others! Take care, and thanks again!

  • Firefox sometimes does not display my tabs along the menu bar when two or less are open - is this a bug?

    When I have less than three tabs open after having more open, Firefox does not display the tabs along the menu bar. This means I can't see tabs when I have two open. Is this a glitch?
    Note: I am aware that I can set Firefox to always show the tabs, but I do not like this setting for when I only have one tab opened.

    Hi,
    You can try to '''Reset toolbars and controls:''' and '''Make Changes and Restart''' in the [https://support.mozilla.org/en-US/kb/Safe%20Mode Safe Mode] start screen.
    If the problem persists, please try a [https://support.mozilla.org/en-US/kb/Managing-profiles?s=profile&r=0&e=sph&as=s new profile]. You can later copy [https://support.mozilla.org/en-US/kb/Backing%20up%20your%20information?s=backup&r=1&e=sph&as=s needed data] from the old profile to this.
    [http://kb.mozillazine.org/Profile_folder_-_Firefox Firefox Profile Folder & Files]

Maybe you are looking for

  • HT201401 My iphone contact list has changed and it keeps deleting my contacts. could icloud be the problem?

    My iphone contact list has changed and it keeps deleting my contacts. could icloud be the problem?

  • Query for RFQ and ME59N

    Hi Gurus, I have two basic queries. 1. Can info record get updated automatically when I save RFQ via ME47? IF yes, where is the info update button at item level? 2. If I have 4 line items (example) in PR and all are for different vendors and Plant...

  • Change You Old PC to a Chrome Device

    Hey SpiceHeads! Have you looked at our Deals page lately? We offer limited time deals on better-than-new refurbished computers and tech supplies. If anyone understands an IT education budget, it's us!See below for our latest deals and be sure to head

  • Duplicating images in referenced library ?

    hi, i have my whole library managed by me, meaning i always import images leaving them in the filestructure i created and not letting aperture copying them into the big aperture library. my usual workflow is that i do simple adjustements in aperture

  • Mac OS X 10.4.11 question

    I have a Macbook with the Mac OS X 10.4.11 and when I download an application it states "this application can not be supported by your version of Mac OS X.  What do I do?