我尝试设置ExcelLineChartSerie提供的所有相关属性,但仍然无法设置或更改Excel标记的颜色与默认的丑陋蓝色。
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<FrameLayout
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintBottom_toTopOf="@+id/segmentedButton"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"></FrameLayout>
<Buttons
android:id="@+id/segmentedButton"
android:layout_width="0dp"
android:layout_height="50dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"></Buttons>
</android.support.constraint.ConstraintLayout>
答案 0 :(得分:1)
通过查看current source code,看起来EPPlus中尚未实现此功能。
This讨论指向SO post,其中显示了如何实现扩展方法以添加更改线条粗细和颜色的功能。应该可以调整此代码以更改标记填充颜色。您需要的属性路径是在codeplex讨论结束时(上面的第二个链接)。
答案 1 :(得分:0)
它在EPPlus(current source!)中可用。只需将基本系列转换为特定系列即可。
var chartType3 = chart.PlotArea.ChartTypes.Add(eChartType.Line);
var serie5 = chartType3.Series.Add(worksheet.Cells["F1:F12"], worksheet.Cells["A1:A12"]);
((ExcelLineChartSerie) serie5).Marker = eMarkerStyle.Circle;
((ExcelLineChartSerie) serie5).MarkerLineColor = Color.FromArgb(165, 165, 165);
((ExcelLineChartSerie) serie5).MarkerSize = 5;