问题描述
如何按特定顺序制作图例文字SSRS?
How to make the legend texts in a certain order SSRS?
推荐答案
根据您的描述,似乎您想通过特殊序列来制作图例文本顺序,对吗?
According to your description , seems that you want to make the legend text order by a special sequence , right?
如果是这样,似乎在ssrs中,图例文本只允许从"AZ"订购或"ZA"基于一个字段。
If so , seems that in ssrs the legend text would only allow to order from "A-Z" or "Z-A" based on one filed .
如果您想按特定顺序订购,则需要手动为列
分配序列号。 就像你想要 的图例文字(class1)一样。
A,Z,M,B
If you want to order by a particular sequence , you need to assign the sequence number manually for the column like if you want the legend text (class1) order by A ,Z,M,B
您需要再添加一列 用于特殊序列,例如:
You need to add one more column for the special sequence like :
Class1 Seq
Class1 Seq
A
1
Z   
2
M   ;   
3
B 4
然后使用"Seq"列进行排序,而标签仍然使用列class1。
And then sorting by using the Column "Seq" , while the label still use the column class1.
希望它可以帮到你。
最好的问候,
Eric Liu
这篇关于如何按照特定顺序制作传奇文本SSRS?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!