Ver Mensaje Individual
  #3 (permalink)  
Antiguo 28/01/2008, 13:29
son_shinta
 
Fecha de Ingreso: noviembre-2007
Mensajes: 19
Antigüedad: 16 años, 3 meses
Puntos: 0
Re: excel + rotulos en grafico de dispersion

sigo respondiendome solo ...

encontre algo, lo modifique y quedo esto

Sub Macro3()
With ActiveSheet.ChartObjects("reloj").Chart

With .SeriesCollection(1)
.HasDataLabels = True
.ApplyDataLabels Type:=xlDataLabelsShowValue
For punto = 1 To .Points.Count
.Points(punto).DataLabel.Text = "casa"
Next

End With
End With

End Sub


al principio tenia el for primero y por eso nu me funcionaba ....