getX method

double getX(
  1. int position
)

根据索引索取x坐标

  • mPointWidth / 2防止第一根和最后一根k线显示不��� @param position 索引值

Implementation

double getX(int position) => position * mPointWidth + mPointWidth / 2;