Graphique en colonnes et plages non contiguës : Différence entre versions

De zBasic
Aller à : navigation, rechercher
 
Ligne 9 : Ligne 9 :
 
   [[zGraph.Termine]](sGraph, "Feuille8", "A10")
 
   [[zGraph.Termine]](sGraph, "Feuille8", "A10")
 
  End sub
 
  End sub
 +
 +
[[Category:Exemples]]

Version actuelle en date du 16 juillet 2018 à 15:43

Zgraph colonnes.png

Sub Main
  GlobalScope.BasicLibraries.loadLibrary ("zBasic")
  Dim sGraph as variant
  sGraph = zGraph.Demarre("Test", "Feuille8", "A1:A6;D1:D6")
  zGraph.Modele(sGraph, "Colonne", "Normal")	
  zGraph.Propriete(sGraph, "Titre", "Planning")
  zGraph.Termine(sGraph, "Feuille8", "A10")
End sub