Isomorphic,
I am using Smartgwt ee 2.5. I am using BlackOps skin for my project. The problem is, when I create FacetCharts and display them on some window, the FacetValues on the x-axis and y-axis are almost not visible.
So, using styling how do I do that?
I am using both FacetCharts directly generated from a CubeGrid and also the FacetCharts which I created using FacetChart class and set the data explicitly. In both the cases I require the styling to be done.
I did the following, but was not able to see any difference:
styling.css
.chartFont {
font-family: "palatino linotype";
font-size: 10px;
font-color: white;
border: 1px solid white;
}
index.jsp
<link type="text/css" rel="stylesheet" href="styling.css"> ---> added this in the <head> tag
MyProgram.java
FacetChart chart1 = new FacetChart();
chart1.setStyleName("chartFont");
Can you suggest a solution?
I am using Smartgwt ee 2.5. I am using BlackOps skin for my project. The problem is, when I create FacetCharts and display them on some window, the FacetValues on the x-axis and y-axis are almost not visible.
So, using styling how do I do that?
I am using both FacetCharts directly generated from a CubeGrid and also the FacetCharts which I created using FacetChart class and set the data explicitly. In both the cases I require the styling to be done.
I did the following, but was not able to see any difference:
styling.css
.chartFont {
font-family: "palatino linotype";
font-size: 10px;
font-color: white;
border: 1px solid white;
}
index.jsp
<link type="text/css" rel="stylesheet" href="styling.css"> ---> added this in the <head> tag
MyProgram.java
FacetChart chart1 = new FacetChart();
chart1.setStyleName("chartFont");
Can you suggest a solution?
Comment