从条形图中删除未使用的列
我正在创建一个部门条形图,显示一组任务的时间范围。 有些部门共享任务,有些部门则是独特的。 我正在运行图表,只是我不希望为每个部门列出所有可能的任务。 我只想展示该部门实际完成的那些任务。
以下是数据示例(以天为单位):
IT Pending 5
IT In Process 8
CD Pending 10
CD 1st Inspection 15
CD Re-inspection 5
在这种情况下,我不想看到 IT 的“第一次检查”或“重新检查”,因为 IT 不做这项工作,我们也不希望 CD 进行这项工作。 “进行中”。
是否可以删除某个类别不需要的这些系列?
提出这个问题的主要原因是我们的数据集太大,几乎不可能阅读报告。 我认为删除这些不需要的列确实会有帮助。
I am creating a departmental bar chart that shows time frames for a set of tasks. Some departments share tasks, others are unique. I have the chart running except that I don't want all possible tasks listed for every department. I would only like to display those tasks that the department actually did.
Here is an example of the data (# in days):
IT Pending 5
IT In Process 8
CD Pending 10
CD 1st Inspection 15
CD Re-inspection 5
In this case I don't want to see "1st Inspection" or "Re-inspection" for IT because IT doesn't do that job nor do we want CD to have "In Process".
Is it possible to remove these unneeded series for a category?
The primary reason for asking this is because our data set is so large, it is nearly impossible to read the report. I think removing these unneeded columns would really help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这对我来说一定是漫长的一周。 我改变了生成图表的方式并得到了我想要的。 我的数据很好,我现在正在使用类别字段的状态并使其正常工作。
It must have been a long week for me. I switched how I was generating the graph and got what I wanted. My data was fine, I am now using the status for the category field and got it working.