Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有两个相关的 Shield UI ASP.NET 图表。我打算为我的访问者提供不同的信息。另外,我想使用图表的数据区域来放置一些横幅。问题是,对于已经登录或得分较高的用户,我需要图像比新用户更不可见。我研究了在线文档,但没有要设置的其他属性。只有:
{ chartAreaBackgroundImage: 'image url' }
例如,有没有办法设置透明度?
无法调整 Shield UI ASP.NET 的透明度。如果横幅的数量是固定的,您可以修饰您的图像,以便为相应的用户组提供适当的不透明度。您可以使用数组:
var imageData = DataImageURLs[UserLevel].values,
通过用户的权限级别或其他数字访问所需的图像。
然后放置适当的图像:
dataSeries: [{ seriesType: 'line', collectionAlias: 'Information', data: detailData }],