Hello everyone,
I’m having an issue with my graph display. I selected the line option, but the first column appears as a line while the second shows points, and there’s also an enumeration appearing. Please see the attached image for clarification.
// Créer un graphique de ligne pour "Percent NOK ICT" et "Percent NOK FCT"
graph1 = Graph Builder(
Size( 600, 400 ),
Show Control Panel( 0 ),
Variables( X( :Date ), Y( :Percent NOK ICT ), Y( :Percent NOK FCT ) ),
Elements( Line( X, Y( 1 ), Legend( "Percent NOK ICT" ), Color( "Blue" ) ),
Line( X, Y( 2 ), Legend( "Percent NOK FCT" ), Color( "Orange" ) ) ) // Utiliser une courbe pour "Percent NOK FCT"
);
// Afficher le graphique
graph1 << Show Window;
// Créer un graphique en barres pour "Total ICT" et "Total FCT"
graph2 = Graph Builder(
Size( 600, 400 ),
Show Control Panel( 0 ),
Variables( X( :Date ), Y( :Total ICT ), Y( :Total FCT ) ),
Elements( Bar( X, Y( 1 ), Legend( "Total ICT" ), Color( "Blue" ) ),
Bar( X, Y( 2 ), Legend( "Total FCT" ), Color( "Orange" ) ) )
);
// Afficher le graphique
graph2 << Show Window;
// Créer un graphique de dispersion pour "Percent NOK ICT" vs. "Percent NOK FCT"
graph3 = Graph Builder(
Size( 600, 400 ),
Show Control Panel( 0 ),
Variables( X( :Percent NOK ICT ), Y( :Percent NOK FCT ) ),
Elements( Points( X, Y, Legend( "Scatter Plot" ), Color( "Green" ) ) )
);
// Afficher le graphique
graph3 << Show Window;
Thank you in advance,