Data labels not displayed correctly

hawkbase85

New Member
Joined
Jul 21, 2019
Messages
5
I have a 3 series stacked bar chart and the fourth series is a data label. The data label is a date value that selects values from the date column. The Primary axis is categorized based on 2 values. The secondary axis is Month. The data labels are displayed accurately as per the month except the 3 labels.

The first series is the difference between F and E.The second series is the difference between the J and K column. The third series is the difference between L and M column. The fourth series is a date column with the data label displayed on the stacked bar chart.

The three data labels alone are not displaying below the exact Month and what might be the reason for this?
 

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
Could you upload an image to one of the sharing sites and post the link here. I cannot picture the problem based on what you said.
Some data and the SERIES formulas would also help us to troubleshoot.

Code:
Option Explicit

Sub PrintSeriesFormulae()

    Dim ser As Series
    
    For Each ser In ActiveSheet.ChartObjects(1).Chart.SeriesCollection
        Debug.Print ser.Formula
    Next
    
End Sub
 
Upvote 0

Forum statistics

Threads
1,213,560
Messages
6,114,304
Members
448,564
Latest member
ED38

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top