blob: 95fc28adc8c7f825773da97d025d5cfad072f818 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
<?php
/**
* stub for davefx/phplot
* @phpcs:disable MediaWiki.Files.ClassMatchesFilename
*/
class PHPlot {
/**
* @param int $width
* @param int $height
* @param string|null $output_file
* @param string|null $input_file
*/
public function __construct( $width, $height, $output_file = null, $input_file = null ) {
}
/**
* @param string|null $which_font
* @return bool
*/
public function SetDefaultTTFont( $which_font = null ) {
}
/**
* @param string $which_elem
* @param string $which_font
* @param int $which_size
* @param int|null $which_spacing
* @return bool
*/
public function SetFontTTF( $which_elem, $which_font, $which_size = 12, $which_spacing = null ) {
}
/**
* @param array $which_dv
* @return bool
*/
public function SetDataValues( $which_dv ) {
}
/**
* @param string|string[] $which_leg
* @return bool
*/
public function SetLegend( $which_leg ) {
}
/**
* @param string $which_ytitle
* @param string $which_ypos
* @return bool
*/
public function SetYTitle( $which_ytitle, $which_ypos = 'plotleft' ) {
}
/**
* @param float $which_ti
* @return bool
*/
public function SetYTickIncrement( $which_ti = '' ) {
}
/**
* @param float|null $xmin
* @param float|null $ymin
* @param float|null $xmax
* @param float|null $ymax
* @return bool
*/
public function SetPlotAreaWorld( $xmin = null, $ymin = null, $xmax = null, $ymax = null ) {
}
/**
* @param string $which_xtlp
* @return bool
*/
public function SetXTickLabelPos( $which_xtlp ) {
}
/**
* @param string $which_tp
* @return bool
*/
public function SetXTickPos( $which_tp ) {
}
/**
* @param float $which_xla
* @return bool
*/
public function SetXLabelAngle( $which_xla ) {
}
/**
* @param string|int[]|null $which_color
* @return bool
*/
public function SetTransparentColor( $which_color = null ) {
}
/**
* @param string|int[] $which_color
* @return bool
*/
public function SetBackgroundColor( $which_color ) {
}
/**
* @return bool
*/
public function DrawGraph() {
}
}
|