We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
对于如下所示这么一组简单的数据,ava的 getInsights 方法 返回的结果为 { insights: [] }, 我的疑问点在于
{ insights: [] }
未识别到 最合适的展示方式时,以柱状图的方式显示
const data = [ { NAME: "刘小庆", sign_in_count: 86 }, { NAME: "段伟", sign_in_count: 177 }, { NAME: "李鹏", sign_in_count: 175 }, { NAME: "王印月", sign_in_count: 274 }, { NAME: "高万虎", sign_in_count: 274 }, ];
此外, 对于如下数据,ava的 getInsights 方法 返回的结果为 { insights: [] } , 我感觉很困惑,这些数据很简单,并且规律也很明显,为什么没有结果呢?
const data = [ { NAME: "刘小庆", sign_in_count: 1 }, { NAME: "段伟", sign_in_count: 2 }, { NAME: "李鹏", sign_in_count: 3 }, { NAME: "王印月", sign_in_count: 4 }, { NAME: "高万虎", sign_in_count: 5 }, ]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
对于如下所示这么一组简单的数据,ava的 getInsights 方法 返回的结果为
{ insights: [] }
, 我的疑问点在于未识别到 最合适的展示方式时,以柱状图的方式显示
?假如可以的话,该怎么配置呢此外, 对于如下数据,ava的 getInsights 方法 返回的结果为
{ insights: [] }
, 我感觉很困惑,这些数据很简单,并且规律也很明显,为什么没有结果呢?The text was updated successfully, but these errors were encountered: