'/dashboard-grafik', 'class' => 'form-horizontal', 'id' => 'f_dashboard']); ?>
AddAttribute("caption", sprintf("{
text: 'Monitoring Pengukuran Suhu %s'
}", $namaAset));
$timeSeries->AddAttribute("series", "'Pengukuran'");
$timeSeries->AddAttribute('yaxis', '[
{
"plot":"Jumlah",
"title":"Jumlah",
"referenceline":[
{
"label":"Batas Perawatan",
"value":"70",
"style":{
"marker":{
"stroke-dasharray":[4,3]
}
}
}
]
}
]');
// chart object
$Chart = new FusionCharts("timeseries", "MyFirstChart" , "900", "600", "chart-container", "json", $timeSeries);
// Render the chart
$Chart->render();
}
?>
AddAttribute("caption", sprintf("{
text: 'Monitoring Pengukuran Getaran %s'
}", $namaAset));
$timeSeriesT->AddAttribute("series", "'Pengukuran'");
$timeSeriesT->AddAttribute('yaxis', '[
{
"plot":"Jumlah",
"title":"Jumlah",
"referenceline":[
{
"label":"Batas Perawatan",
"value":"70",
"style":{
"marker":{
"stroke-dasharray":[4,3]
}
}
}
]
}
]');
// chart object
$ChartT = new FusionCharts("timeseries", "MySecondChart" , "900", "600", "chart-container-t", "json", $timeSeriesT);
// Render the chart
$ChartT->render();
}
?>