phpspreadsheet — линии без маркеров на графике

Я использую phpspreadsheet для создания линейных диаграмм. Почти все хорошо, но я не понимаю, как изменить стиль сюжета.

Вот что у меня есть:

function createChart($sheet, $sheetname, $data) {

$count = $data["custom"]["count"];

$sheet->getColumnDimensionByColumn(1)->setAutoSize(true);
$sheet->setCellValueByColumnAndRow(1, 1, $data["custom"]["type"]);


for($j=0; $j < $count; $j++)
$sheet->setCellValueByColumnAndRow(1, $j + 2, $data["custom"]["dates"][$j]);

for($i=0; $i< count($data["series"]); $i++) {

$sheet->setCellValueByColumnAndRow($i+2, 1, $data["series"][$i]["name"]);
$sheet->getColumnDimensionByColumn($i+2)->setAutoSize(true);

for($j=0; $j < $count; $j++)
{

$value = $data["series"][$i]["data"][$j] ? $data["series"][$i]["data"][$j] : 0;
$sheet->setCellValueByColumnAndRow($i+2, $j + 2, $value);
}
}

$dsl=array();

for($i=0; $i< count($data["series"]); $i++) {
$series = new DataSeriesValues(DataSeriesValues::DATASERIES_TYPE_STRING, $sheetname . '!' .
$sheet->getCellByColumnAndRow($i+2, 1)->getCoordinate(), NULL, 1, [], NULL, NULL);
array_push($dsl, $series);
}

$xal=array(
new DataSeriesValues(DataSeriesValues::DATASERIES_TYPE_NUMBER, $sheetname . '!'.
$sheet->getCellByColumnAndRow(1, 2)->getCoordinate() . ':' .
$sheet->getCellByColumnAndRow(1, $count + 2)->getCoordinate()  , NULL, $count)
);

$dsv = array();

for($i=0; $i< count($data["series"]); $i++) {
$series = new DataSeriesValues(DataSeriesValues::DATASERIES_TYPE_NUMBER, $sheetname . '!'.
$sheet->getCellByColumnAndRow($i+2, 2)->getCoordinate() . ':' .
$sheet->getCellByColumnAndRow($i+2, $count + 2)->getCoordinate()  , NULL, $count);
array_push($dsv, $series);
}

$type = "";

switch($data["series"][0]["type"]) {

case CHART_TYPE_BARCHART:
$type = DataSeries::TYPE_BARCHART;
break;
case CHART_TYPE_LINECHART:
$type = DataSeries::TYPE_LINECHART;
break;
default:
$type = DataSeries::TYPE_LINECHART;
}

$ds = new DataSeries(
$type,
DataSeries::GROUPING_STANDARD,
range(0, count($dsv)-1),
$dsl,
$xal,
$dsv,
null,
true,
DataSeries::STYLE_MARKER
);

$pa = new PlotArea(NULL, array($ds));


$legend = new Legend(Legend::POSITION_BOTTOM, NULL, false);

$title = new Title($data["title"]["text"]);


$chart = new Chart(
'chart1',
$title,
$legend,
$pa,
0,
0,
NULL,
NULL
);

$chart->setTopLeftPosition( $sheet->getCellByColumnAndRow(count($data["series"]) + 3, 1)->getCoordinate());
$chart->setBottomRightPosition($sheet->getCellByColumnAndRow(count($data["series"]) + 17, 40)->getCoordinate());

$sheet->addChart($chart);

}

В частности, я хотел бы рисовать линии без маркеров.

Я пытался передать все возможные значения $plotStyle параметр Dataseries конструктор, но это не имело никакого эффекта.

Я знаю из API документы что есть Properties класс, который определяет множество констант, влияющих на стиль диаграммы, но я не понимаю, как его использовать, так как другие классы на него не ссылаются.

Я также знаю из этот вопрос что можно установить свойства стиля создаваемого документа, это правильный путь? Как перейти к свойствам графика?

0

Решение

Я нашел это сам. Все, что мне нужно было сделать, это передать строку "none" к параметру $marker из DataSeriesValues конструктор:

DataSeriesValues::__construct(
string $dataType = self::DATASERIES_TYPE_NUMBER,
string $dataSource = null
, null|mixed $formatCode = null,
int $pointCount = 0,
mixed $dataValues = [],
null|mixed $marker = null,
null|string $fillColor = null
)

Таким образом, соответствующая часть моего кода становится:

for($i=0; $i< count($data["series"]); $i++) {
$series = new DataSeriesValues(DataSeriesValues::DATASERIES_TYPE_NUMBER, $sheetname . '!'.
$sheet->getCellByColumnAndRow($i+2, 2)->getCoordinate() . ':' .
$sheet->getCellByColumnAndRow($i+2, $count + 2)->getCoordinate()  , NULL, $count, [], "none");
array_push($dsv, $series);
}
0

Другие решения

Других решений пока нет …

По вопросам рекламы [email protected]