Kaydet (Commit) b2cb3196 authored tarafından Dennis Francis's avatar Dennis Francis

tdf#86019: Use ChartDataRowSource_COLUMNS as the chart...

...data row source if there is atleast a sequence along a
column.

Change-Id: I24838a704d31f83fa51efa2eb44b489affe86f35
Reviewed-on: https://gerrit.libreoffice.org/41202Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarDennis Francis <dennis.francis@collabora.co.uk>
üst 791f93e0
......@@ -1891,9 +1891,9 @@ uno::Sequence< beans::PropertyValue > SAL_CALL ScChart2DataProvider::detectArgum
if (!bRowSourceAmbiguous)
{
bRowSourceDetected = true;
eRowSource = ( nDataInRows > 0
? chart::ChartDataRowSource_ROWS
: chart::ChartDataRowSource_COLUMNS );
eRowSource = ( nDataInCols > 0
? chart::ChartDataRowSource_COLUMNS
: chart::ChartDataRowSource_ROWS );
}
else
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment