custom-formatting

.Net DataVisualization.Charting Formatting values on Y-Axis

Does anybody know how to format and control the values shown on the Y-Axis of a .Net 4 DataVisualization.Charting chart? I have values on the Y-Axis and dates on the X-Axis. The values on the Y-Axis are showing multiple decimal points and I want to apply a custom formatter to them so that I can show them in any format I want. So for exa...

From custom formatters to a field?

I've made a field using Custom Formatters (Drupal, CCK). Now I got this PHP code to export /** * Implements hook_theme(). */ function product_attribute_theme() { return array( 'product_attribute_formatter_product_attribute' => array( 'arguments' => array('element' => NULL), ), ); } /** * Implements hook_field_formatte...