如何用两个或三个字母表达列的排序方式
在刚刚上线的网页上,我有两列:变化和变化百分比。在两列的标题中,我想为用户提供一个小控件,以便他可以在按绝对值对列进行排序之间切换;和算术上。
在第一种情况下,我可以向他展示类似的内容:
+-----+ +-----+
| ABS | or | MAG |
+-----+ +-----+
我可以给他什么两个或三个字母的缩写来选择按符号值排序?
或者我可以使用什么图形来清晰且具有良好的可见性来表达相同的想法?
谢谢!
On a just-now-coming-alive web page, I have two columns: change and change-percent. In the headers of the two columns, I want to give the user a small control so he can toggle between sorting the columns by abs value; and arithmetically.
In the first case, I can show him something like:
+-----+ +-----+
| ABS | or | MAG |
+-----+ +-----+
What two- or three-letter abbrev can I give him to select sorting by signed value?
Or what graphics can I use to express the same ideas clearly and with good affordance?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
![扫码二维码加入Web技术交流群](/public/img/jiaqun_03.jpg)
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不管这个问题最终结果如何:p,这里有一个建议。
我认为 ABS 和 MAG 是不错的关键字,您可以链接到控制排序,特别是如果您有鼠标悬停文本弹出来解释操作 - 即“按绝对值排序”。不过,您的图标确实有很好的设置,我们应该努力保留它。
目前,您可以单击图标来控制突出显示和排序顺序 (asc/desc)
我认为您应该分开稍微修改一下,并使用绝对值修饰符增强排序顺序。通过单击单词“abs”,您可以突出显示该单词(以表明它处于活动状态)并在排序之间切换(无论符号如何)。这是我的原型:
干杯
Regardless of where this question ends up :p, here's a suggestion.
I think ABS and MAG are decent keywords you can link to control sorting, especially if you have mouse-over text pop up that explains the action - i.e. "Sort by absolute value". You do have a nice setup with your icons though, and we should work to preserve that.
Currently, you have icons that you click to control highlighting and sort order (asc/desc)
I think that you should separate them a bit, and enhance the sort order with an absolute value modifier. By clicking the word 'abs', you might highlight the word (to show that it's active) and toggle between sorting regardless of sign. Here's my prototype:
Cheers