Example #1 - FDA Rounding Off

$('#test1').nutritionLabel({
	width : 380,
	showLegacyVersion : false,
	showUKVersion : true,
	showItemNameForUK : true,
	showDailySugars : true,
	valueServingWeightGrams : 77,

	dailyValueTotalFat : 70, //this should be 70 for the uk version
	dailyValueCarb : 260, //this should be 260 for the uk version
	dailyValueSugar : 90, //this should be 90 for the uk version

	textCalories : 'Energy',
	textTotalCarb : 'Carbohydrate',
	textFibers : 'Fibre',
	textSodium : 'Salt',

	calorieIntake : 1222,
	showServingUnitQuantity : false,
	showIngredients : false,
	itemName : 'Bleu Cheese Dressing',
	decimalPlacesForNutrition : 2,
	decimalPlacesForDailyValues : 2,
	allowFDARounding : false,

	valueCalories : 450.10,
	valueTotalFat : 48.0,
	valueSatFat : 6.12,
	valueSodium : 780,
	valueTotalCarb : 3.2,
	valueFibers : 0.3,
	valueSugars : 3.0,
	valueProteins : 3
});



Example #2 - FDA Rounding On

$('#test2').nutritionLabel({
	width : 380,
	showLegacyVersion : false,
	showUKVersion : true,
	showItemNameForUK : true,
	showDailySugars : true,
	valueServingWeightGrams : 77,

	dailyValueTotalFat : 70, //this should be 70 for the uk version
	dailyValueCarb : 260, //this should be 260 for the uk version
	dailyValueSugar : 90, //this should be 90 for the uk version

	textCalories : 'Energy',
	textTotalCarb : 'Carbohydrate',
	textFibers : 'Fibre',
	textSodium : 'Salt',

	calorieIntake : 1222,
	showServingUnitQuantity : false,
	showIngredients : false,
	itemName : 'Bleu Cheese Dressing',
	decimalPlacesForNutrition : 2,
	decimalPlacesForDailyValues : 2,
	allowFDARounding : true,

	valueCalories : 450.10,
	valueTotalFat : 48.0,
	valueSatFat : 6.12,
	valueSodium : 780,
	valueTotalCarb : 3.2,
	valueFibers : 0.3,
	valueSugars : 3.0,
	valueProteins : 3
});