conditional_format_end_with
conditional_format_end_with
conditional_format_end_with(string $column, string $ended_with_text, string $color )
Parameter | Description |
---|---|
$column | The column on which you want to apply this conditional formatting method. |
$ended_with_text | a substring that if any cell, in the selected column, ends with, it meets the conditional formatting criteria. Therefore, it will be colored with the given $color parameter. |
$color | This color will be used to highlight the cells that meet the conditional formatting criteria. |
$report = new ReportOptions(SRE_PUBLIC_REPORT);
$report->select_tables(array("weather"))
->select_fields(array("id", "city_id", "date" ,"humidity", "wind", "temprature"))
->conditional_format_end_with("temperature", "°C","#00ff00")
->set_style_name("grey");
$engine = new CustomEngine($report);
$report_path = $engine->create_report();