RaderView 雷达图
borderColor
:网格线颜色branchColor
:由中心发出的分支线的颜色contentColor
:数值区域颜色pointColor
:数值点颜色isShowBorder
:是否显示网格线isShowBranch
:是否显示分支线isShowPoint
:是否显示数值点borderCount
:网格线数量max
:数值最大值shapeType
:雷达图形状,如HEXAGON
shapeType
目前雷达图只支持正六边形(HEXAGON)
setValues(float[] values)
:设置各个属性的值
<com.miracleshed.raderview.RadarView
android:layout_width="match_parent"
android:layout_height="300dp"
android:background="@color/colorPrimary"
app:borderColor="@android:color/white"
app:branchColor="@android:color/white"
app:contentColor="@android:color/white"
app:pointColor="@android:color/holo_red_dark"
app:isShowBorder="true"
app:isShowBranch="true"
app:isShowPoint="true"
app:borderCount="4"
app:max="100"
app:shapeType="HEXAGON"
/>