Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Having difficulty assigning new labels for radar chart
Worksheets("R").ChartObjects("Chart 42").Chart.SetSourceData Source:=Sheets("P").Range("C4:C40"), PlotBy:=xlColumns works ok and the values change but I am lost as to how to change the category x labels. Any suggestions ? |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
s = Worksheets("P").Range("B4:B40").Address(, , xlR1C1, True)
Worksheets("R").ChartObjects("Chart 42").Chart.SeriesCollection(1).XValues = s change B4:B40 as appropriate Regards, Peter T Change "Bob Smith" <Bob wrote in message ... Having difficulty assigning new labels for radar chart Worksheets("R").ChartObjects("Chart 42").Chart.SetSourceData Source:=Sheets("P").Range("C4:C40"), PlotBy:=xlColumns works ok and the values change but I am lost as to how to change the category x labels. Any suggestions ? |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Found the solution, use multiple range selection in the line below
....Range("A4:A40,C4:C40")..... "Bob Smith" wrote: Having difficulty assigning new labels for radar chart Worksheets("R").ChartObjects("Chart 42").Chart.SetSourceData Source:=Sheets("P").Range("C4:C40"), PlotBy:=xlColumns works ok and the values change but I am lost as to how to change the category x labels. Any suggestions ? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Radar charts - Angle of category label | Charts and Charting in Excel | |||
formatting or moving a radar chart's axis labels | Excel Discussion (Misc queries) | |||
Category Labels in Radar chart | Charts and Charting in Excel | |||
Excel 2007 text labels in category axis - missing labels | Charts and Charting in Excel | |||
change axis info on radar charts | Charts and Charting in Excel |