Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.charting
external usenet poster
 
Posts: 1
Default Disappearing Data Labels

I am using Excel 2003 and have data in a XY Scatter chart. I have an
existing file where I would like to display the Series name as the data
label. When I open the file only a small number of data labels are
displayed. For instance, 2 out of 8 entries for one chart and 19 out of 36
for another chart are displayed. I must go into Chart Options and uncheck
then recheck the Series Name box on Data Labels tab in order to have all of
the data labels appear on the chart. Even if I save the file after
displaying all of the data labels the next time I open the file I'm back to
having only a select few data labels displayed. Any suggestions as to what
is causing this or a way to prevent it in the future?
  #2   Report Post  
Posted to microsoft.public.excel.charting
SD SD is offline
external usenet poster
 
Posts: 24
Default Disappearing Data Labels

Hi,

I have the same error. I have to chekc/unckeck to make the label appear and
then, If I save and reopen the excel file, they're gone!



"md3684" wrote:

I am using Excel 2003 and have data in a XY Scatter chart. I have an
existing file where I would like to display the Series name as the data
label. When I open the file only a small number of data labels are
displayed. For instance, 2 out of 8 entries for one chart and 19 out of 36
for another chart are displayed. I must go into Chart Options and uncheck
then recheck the Series Name box on Data Labels tab in order to have all of
the data labels appear on the chart. Even if I save the file after
displaying all of the data labels the next time I open the file I'm back to
having only a select few data labels displayed. Any suggestions as to what
is causing this or a way to prevent it in the future?

  #3   Report Post  
Posted to microsoft.public.excel.charting
SD SD is offline
external usenet poster
 
Posts: 24
Default Disappearing Data Labels

I had the problem with series created from C# with code like that one :


Excel.Series S = C.NewSeries();
S.Name = "=" + FirstRR.LegendRange.get_Address(true, true,
Excel.XlReferenceStyle.xlR1C1, true, Type.Missing);
S.XValues = FirstRR.RiskRange;
S.Values = FirstRR.ReturnRange;
S.MarkerBackgroundColorIndex = FirstRR.Color;

As I have only One point in each Series, I changed to

Excel.Series S = C.NewSeries();
S.Name = "=" + FirstRR.LegendRange.get_Address(true, true,
Excel.XlReferenceStyle.xlR1C1, true, Type.Missing);
S.XValues = FirstRR.RiskRange;
S.Values = FirstRR.ReturnRange;
Excel.Point P = (Excel.Point)S.Points(1);
P.MarkerBackgroundColorIndex = FirstRR.Color;

And it works well...

Another Excel Mystery!




"SD" wrote:

Hi,

I have the same error. I have to chekc/unckeck to make the label appear and
then, If I save and reopen the excel file, they're gone!



"md3684" wrote:

I am using Excel 2003 and have data in a XY Scatter chart. I have an
existing file where I would like to display the Series name as the data
label. When I open the file only a small number of data labels are
displayed. For instance, 2 out of 8 entries for one chart and 19 out of 36
for another chart are displayed. I must go into Chart Options and uncheck
then recheck the Series Name box on Data Labels tab in order to have all of
the data labels appear on the chart. Even if I save the file after
displaying all of the data labels the next time I open the file I'm back to
having only a select few data labels displayed. Any suggestions as to what
is causing this or a way to prevent it in the future?

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Line disappearing from chart after changing data source Albert Charts and Charting in Excel 0 July 12th 06 12:17 PM
Why do I have certain raw data disappearing in my pivot table mlewers Excel Worksheet Functions 0 February 4th 06 08:23 PM
Border Formatting Disappearing when data entered into cell Orgelfreude Excel Discussion (Misc queries) 0 October 11th 05 01:51 AM
Disappearing Data Items on Pivot Table -Updated Question GeorgeChe Excel Discussion (Misc queries) 4 August 2nd 05 03:22 PM
whole lines are disappearing before I finish entering data DiWoz Excel Discussion (Misc queries) 1 June 4th 05 10:56 PM


All times are GMT +1. The time now is 01:20 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"