@ -1,7 +1,7 @@
package com.fr.van.chart.designer.style.background.radar ;
package com.fr.van.chart.designer.style.background.radar ;
import com.fr.design.gui.ilable.UILabel ;
import com.fr.design.gui.ilable.UILabel ;
import com.fr.design.i18n.Toolkit ;
import com.fr.van.chart.designer.style.background.VanChartAlertValuePane ;
import com.fr.van.chart.designer.style.background.VanChartAlertValuePane ;
import java.awt.Component ;
import java.awt.Component ;
@ -14,9 +14,10 @@ public class VanChartRadarAlertValuePane extends VanChartAlertValuePane {
protected Component [ ] [ ] getTopPaneComponents ( ) {
protected Component [ ] [ ] getTopPaneComponents ( ) {
return new Component [ ] [ ] {
return new Component [ ] [ ] {
new Component [ ] { new UILabel ( com . fr . design . i18n . Toolkit . i18nText ( "Fine-Design_Chart_Use_Value" ) ) , alertValue } ,
new Component [ ] { new UILabel ( Toolkit . i18nText ( "Fine-Design_Chart_Use_Value" ) ) , getAlertValue ( ) } ,
new Component [ ] { new UILabel ( com . fr . design . i18n . Toolkit . i18nText ( "Fine-Design_Chart_Line_Style" ) ) , alertLineStyle } ,
new Component [ ] { new UILabel ( Toolkit . i18nText ( "Fine-Design_Chart_Line_Style" ) ) , getAlertLineStyle ( ) } ,
new Component [ ] { new UILabel ( com . fr . design . i18n . Toolkit . i18nText ( "Fine-Design_Chart_Color" ) ) , alertLineColor } ,
new Component [ ] { new UILabel ( Toolkit . i18nText ( "Fine-Design_Chart_Line_Width" ) ) , getLineWidthSpinner ( ) } ,
new Component [ ] { new UILabel ( Toolkit . i18nText ( "Fine-Design_Chart_Color" ) ) , getAlertLineColor ( ) } ,
} ;
} ;
}
}