Yuan-Mr / mcCharts

mcCharts(莓创图表)是McUI提供的一款开箱即用的图表工具库。作为HarmonyOS一款开源的图表组件库,组件库将会提供以下图表:折线图、柱状图、饼图、散点图、雷达图等等。
http://meichuang.org.cn/
MIT License
60 stars 9 forks source link

Tooltip中的app.float.xxxx资源引用不到,编译不通过 #7

Open CelestialPossession opened 6 months ago

CelestialPossession commented 6 months ago

@Extend(Text) function fancy (tooltipInfo: InterfaceObj) { .fontSize(tooltipInfo.textStyle.fontSize || $r('app.float.fontSize')) .fontColor(tooltipInfo.textStyle.color || $r('app.float.color')) .fontWeight(tooltipInfo.textStyle.fontWeight || $r('app.float.fontWeight')) .fontFamily(tooltipInfo.textStyle.fontFamily || $r('app.float.fontFamily')) }

'app.float.xxxxx'无法引用,resource.base.element中没有float.json,写成font.json了

版本"@mcui/mccharts": "^1.0.2",目前只能注释上述默认风格来通过编译

Yuan-Mr commented 6 months ago

好的,我们检查检查

3sense3 commented 3 months ago

@extend(Text) function fancy (tooltipInfo: InterfaceObj) { .fontSize(tooltipInfo.textStyle.fontSize || $r('app.float.fontSize')) .fontColor(tooltipInfo.textStyle.color || $r('app.float.color')) .fontWeight(tooltipInfo.textStyle.fontWeight || $r('app.float.fontWeight')) .fontFamily(tooltipInfo.textStyle.fontFamily || $r('app.float.fontFamily')) }

'app.float.xxxxx'无法引用,resource.base.element中没有float.json,写成font.json了

版本"@mcui/mccharts": "^1.0.2",目前只能注释上述默认风格来通过编译

你好,是直接注释@Extend(Text) function fancy (tooltipInfo: InterfaceObj) { // .fontSize(tooltipInfo.textStyle.fontSize || $r('app.float.fontSize')) // .fontColor(tooltipInfo.textStyle.color || $r('app.float.color')) // .fontWeight(tooltipInfo.textStyle.fontWeight || $r('app.float.fontWeight')) // .fontFamily(tooltipInfo.textStyle.fontFamily || $r('app.float.fontFamily')) // }吗

3sense3 commented 3 months ago

简单粗暴注释 @extend(Text) function fancy (tooltipInfo: InterfaceObj) { .fontSize(tooltipInfo.textStyle.fontSize )//|| $r('app.float.fontSize') .fontColor(tooltipInfo.textStyle.color )//|| $r('app.float.color') .fontWeight(tooltipInfo.textStyle.fontWeight)// || $r('app.float.fontWeight') .fontFamily(tooltipInfo.textStyle.fontFamily )//|| $r('app.float.fontFamily') } 或者全部修改float为font。

Yuan-Mr commented 3 months ago

已经更新2.0,你可以更新到2.0试试看