Windows NT WIN-F6SLGVICLOP 10.0 build 17763 (Windows Server 2016) AMD64
Microsoft-IIS/10.0
Server IP : & Your IP : 18.223.122.53
Domains :
Cant Read [ /etc/named.conf ]
User : elibrary.unsap.ac.id
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Lock Shell
Lock File++
Readme
D: /
localhost /
elibrary /
lib /
phplot /
contrib /
Delete
Unzip
Name
Size
Permission
Date
Action
README.txt
1.41
KB
-rw-rw-rw-
2020-02-14 07:54
color_range.example.php
1.06
KB
-rw-rw-rw-
2020-02-14 07:54
color_range.php
3.44
KB
-rw-rw-rw-
2020-02-14 07:54
color_range.test1.php
1.5
KB
-rw-rw-rw-
2020-02-14 07:54
color_range.test2.php
2.54
KB
-rw-rw-rw-
2020-02-14 07:54
prune_labels.example.php
892
B
-rw-rw-rw-
2020-02-14 07:54
prune_labels.php
1.29
KB
-rw-rw-rw-
2020-02-14 07:54
prune_labels.test.php
1.16
KB
-rw-rw-rw-
2020-02-14 07:54
Save
Rename
<?php # PHPlot / contrib / color_range : Example # $Id: color_range.example.php,v 1.1 2009/12/09 03:45:45 lbayuk Exp $ # This is a bar chart with a color gradient for the bars in each group. require_once 'phplot.php'; require_once 'color_range.php'; $bars_per_group = 10; $x_values = 4; mt_srand(1); $data = array(); for ($i = 0; $i < $x_values; $i++) { $row = array($i); for ($j = 0; $j < $bars_per_group; $j++) $row[] = mt_rand(0, 100); $data[] = $row; } $p = new PHPlot(800, 600); $p->SetTitle('Example - Bar Chart with gradient colors'); $p->SetDataType('text-data'); $p->SetDataValues($data); $p->SetPlotAreaWorld(0, 0, $x_values, 100); # This isn't necessary, as we do know how many data sets (bars_per_group): $n_data = count_data_sets($data, 'text-data'); # Make a gradient color map: $colors = color_range($p->SetRGBColor('SkyBlue'), $p->SetRGBColor('DarkGreen'), $n_data); $p->SetDataColors($colors); $p->SetXTickLabelPos('none'); $p->SetXTickPos('none'); $p->SetPlotType('bars'); $p->DrawGraph();