1. 程式人生 > >一個視覺效果還不錯的圖表控制元件

一個視覺效果還不錯的圖表控制元件

Jgraph

專案地址:ZuYun/Jgraph 

簡介::fire: 一個視覺效果還不錯的圖表控制元件

更多:作者   提 Bug   

標籤:

 

License  

      

  1. Gradle
  2. Demo
  3. Use Guide
    1. 圖表風格
    2. 滾動
    3. 縱軸
    4. 柱-動畫
    5. 柱-顏色
    6. 線-動畫
    7. 線-風格
    8. 線-斷 0
    9. 線-顏色
    10. 選中
    11. 切換資料
  4. Versions
  5. Todo
  6. License

Gradle

allprojects {
        repositories {
        ...
        maven { url "https://jitpack.io" }
    }
}
dependencies {
    compile 'com.github.mychoices:Jgraph:v1.2'
}

DEMO

demo 下載地址 

User Guide


自定義屬性

<attr name="graphstyle" format="enum">
    <enum name="bar" value="0"/>
    <enum name="line" value="1"/>
</attr>
<attr name="scrollable" format="boolean"/>  
<attr name="visiblenums" format="integer"/>
<attr name="showymsg" format="boolean"/>
<attr name="normolcolor" format="color"/>
<attr name="activationcolor" format="color"/>
<attr name="linestyle" format="enum">
    <!--折線-->
    <enum name="broken" value="0"/>
    <!--曲線-->
    <enum name="curve" value="1"/>
</attr>
<attr name="linemode" format="enum">
    <!--連結每一個點-->
    <enum name="everypoint" value="1"/>
    <!--跳過 0 的點-->
    <enum name="jump0" value="2"/>
    <!--跳過的 0 點用虛線連結-->
    <enum name="dash0" value="3"/>
</attr>
<attr name="linewidth" format="dimension"/>
<attr name="lineshowstyle" format="enum">
    <enum name="drawing" value="0"/>
    <enum name="section" value="1"/>
    <enum name="fromline" value="2"/>
    <enum name="fromcorner" value="3"/>
    <enum name="aswave" value="4"/>
</attr>

GraphStyle

setGraphStyle(@GraphStyle int graphStyle) //柱狀圖 和 折線圖

Scrollable

setScrollAble(boolean )

縱軸

setYaxisValues(@NonNull String... showMsg)
setYaxisValues(int max, int showYnum)
setYaxisValues(int min, int max, int showYnum)

BarShowStyle

setBarShowStyle(@BarShowStyle int barShowStyle)
/**
 * 水波 方式生長
 */
int BARSHOW_ASWAVE 
/**
 * 線條 一從直線慢慢變成折線/曲線
 */
int BARSHOW_FROMLINE 
/**
 * 柱形條 由某個往外擴散
 */
int BARSHOW_EXPAND 

/**
 * 一段一段顯示
 */
int BARSHOW_SECTION

barcolor

setNormalColor(@ColorInt int normalColor)
setPaintShaderColors(@ColorInt int... colors)

LineStyle

setLineStyle(@LineStyle int lineStyle)
/**
 * 折線
 */
int LINE_BROKEN = 0;
/**
 * 曲線
 */
int LINE_CURVE = 1;

LineShowStyle

setLineShowStyle(@LineShowStyle int lineShowStyle)

/**
 * 線條從無到有 慢慢出現
 */
int LINESHOW_DRAWING 
/**
 * 線條 一段一段顯示
 */
int LINESHOW_SECTION 
/**
 * 線條 一從直線慢慢變成折線/曲線
 */
int LINESHOW_FROMLINE 

/**
 * 從左上角 放大
 */
int LINESHOW_FROMCORNER 
/**
 * 水波 方式展開
 */
int LINESHOW_ASWAVE

LineMode

setLineMode(@LineMode int lineMode)
/**
 * 連線每一個點
 */
int LINE_EVERYPOINT 
/**
 * 跳過 0  斷開
 */
int LINE_JUMP0 

/**
 * 跳過 0 用虛線連結
 */
int LINE_DASH_0

linecolor

setNormalColor(@ColorInt int normalColor)
setPaintShaderColors(@ColorInt int... colors)
setShaderAreaColors(@ColorInt int... colors)

select

setSelected(int selected)
setSelectedMode(@SelectedMode int selectedMode)

datachange

aniChangeData(List<Jchart> jchartList)

Versions

Todo

Todo

License

Copyright 2016 Yun

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.